{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/BaseMeta",
"title": "BaseMeta",
"type": "object",
"description": "The meta object returned in paginated response bodies.",
"properties": {
"count": {
"type": "integer",
"minimum": 0,
"description": "The total number of objects in the collection represented by the endpoint.",
"example": 100
},
"limit": {
"type": [
"integer",
"null"
],
"minimum": 1,
"description": "The limit value used in the request.",
"example": 100
},
"offset": {
"type": "integer",
"minimum": 0,
"default": 0,
"description": "The offset value used in the request.",
"example": 0
}
},
"required": [
"count",
"limit"
]
}