Discussions

Ask a Question
ANSWERED

I am facing this issue "unknown error(cannot read the properties of null ('reading slug'))" while deploying OAS through github. could someone help me to resolve this issue

I am facing this issue "unknown error(cannot read the properties of null ('reading slug'))" while deploying OAS through github. could someone help me to resolve this issue. As a developer, I am working on documentation for API changes. Due to support of multiple base URL's, I upgraded to OAS 3.0 from OAS 2.0. After that I started facing this issue. If i update readme keys (API_DEFINITION_KEY & Readme key), then the build is successfull. But after deploying few more changes suddenly this issue replicating. I did validating my OAS file using swagger editor and no error in it. could you pleae reproduce this isssue on your side and provide me the solution.
ANSWERED

how to download a readme file frm this site after making one?

how to export?
ANSWERED

Can't select boolean field when it's required

Hello, If we make a boolean field required as body params, the UI will auto-select the `true` option. However this is not reflected in the curl example. So when we try the request, the boolean field is actually empty in the curl, and the request will fail because it's required. Since the `true` option is already auto-selected, we can't select `true` again. We must first select `false` and then re-select `true` again to make it work. This is our schema: ``` Item: type: object properties: activationRequired: type: boolean description: Description... example: false required: - activationRequired ``` Let me know if you need more details. Thank you in advance.

Does minItems work?

maxItems works but minItems does not. Despite setting minItems to 1 in my spec for request body parameters I’m able to delete all items in the readme UI
ANSWERED

Is it possible to paginate through a list of all docs?

I am working on a search index outside of ReadMe that searches multiple sources: my main marketing site, external blog site, etc. I would like to include my ReadMe docs in the search results. Is there an API method or some other way I can query for the full list of Docs?
ANSWERED

How to add one more tab to subheading

I am trying to add one entry on sub heading next to guides , api reference , etc.
ANSWERED

Feed of Page Quality comments?

Is there a way to get an RSS feed or something similar for Page Quality comments? I'd like to have those pushed to me, instead of having remember to periodically check for them.
ANSWERED

Embed Youtube link in privacy mode

The youtube embed doesn't accept the share/embed privacy mode which domain is: ``` www.youtube-nocookie.com ``` Would be helpful for those who care about privacy.
ANSWERED

Bug: Wrong robots.txt format

### The current format is ``` Disallow: /edit/ Disallow: /login Disallow: /reference-edit/ Disallow: /logout Sitemap: /sitemap.xml ``` ## The correct format should be: the full url/domain should be declared ``` Disallow: /edit/ Disallow: /login Disallow: /reference-edit/ Disallow: /logout Sitemap: https://readme.com/sitemap.xml ```
ANSWERED

I want to show some docs for only logged In users only?

I want to show some docs for only logged In users only and hide it for non-logged In users.How can i do this?