{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/agricultural-marketing-service/refs/heads/main/json-schema/mars-api-pagination-stats-schema.json",
"title": "Pagination Stats",
"description": "Pagination metadata for list responses.",
"type": "object",
"properties": {
"count": {
"type": "integer",
"description": "Number of records in this response.",
"example": 100
},
"total": {
"type": "integer",
"description": "Total number of records matching the query.",
"example": 500
}
}
}