Support Center
v1.0
Title
Message
Create new category
What is the title of your new category?
Edit page index title
What is the title of the page index?
Edit category
What is the new title of your category?
Edit link
What is the new title and URL of your link?
FAQ
AI Tools
Summarize Page
Copy Markdown
Open in ChatGPT
Open in Claude
Connect to Cursor
Connect to VS Code
Why is request/response body empty even though there is a schema object?
Check that your schema object defines a type. If it doesn't, then we'll show the text <type> in the table. properties by itself is not enough to denote that the schema is an object.
For example:
content:
application/json:
schema:
properties:
id:
type: number
name:
type: string
content:
application/json:
schema:
type: object <-- added
properties:
id:
type: number
name:
type: string
How do I reorder Operations?
Operations (for example GET /version , POST /reference) are ordered according to how they are ordered in the OpenAPI definition itself. We use tags to group the operations, but we do not modify the order. For example:
# If the operations and tags are specified as such in the API definition:
paths:
'/cat':
post:
tags:
- Cats
...
get:
tags:
- Cats
...
'/dog':
get:
tags:
- Dogs
...
post:
tags:
- Dogs
...
tags:
- name: 'Dogs'
- name: 'Cats'
# The operations and tags would be ordered as such in the API reference:
# Dogs
# GET /dog
# POST /dog
# Cats
# POST /cat
# GET /cat
Feel free to reorder the operations in your OpenAPI definition as needed to create the right journey for your readers.
To reorder, open the reference in our API Editor and edit the order of paths, operations, or tags directly in Source view; the reference re-renders in that order on save.
Last updated on Jun 23, 2026
Anything missing? Leave us feedback
Next to read:
OpenAPI ExtensionsStaging Environment
Discard Changes
Do you want to discard your current changes and overwrite with the template?
Archive Synced Block
Message
Create new Template
What is this template's title?
Delete Template
Message