Properties
| Name | Type | Description |
|---|---|---|
| next | stringnull | The URL to call to get the next set of Categories |
| previous | stringnull | The URL to call to get the prior set of Categories |
| count | integer | How many Categories exist for the given query |
| objects | array | The list of matching Category data |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CategoriesResponse",
"title": "CategoriesResponse",
"type": "object",
"description": "A page of returned Categories.",
"properties": {
"next": {
"type": [
"string",
"null"
],
"format": "uri",
"readOnly": true,
"description": "The URL to call to get the next set of Categories",
"example": "https://example.com/path/abc123"
},
"previous": {
"type": [
"string",
"null"
],
"format": "uri",
"readOnly": true,
"description": "The URL to call to get the prior set of Categories",
"example": "https://example.com/path/abc123"
},
"count": {
"type": "integer",
"description": "How many Categories exist for the given query",
"example": 100
},
"objects": {
"type": "array",
"items": {
"$ref": "#/components/schemas/AppCategory"
},
"description": "The list of matching Category data",
"example": [
{}
]
}
},
"required": [
"count",
"next",
"objects",
"previous"
]
}