aboutsummaryrefslogtreecommitdiffstats
path: root/packages/json-schemas/schemas/paginated_collection_schema.json
blob: 9dcedf5b4739d0fe05a0a6b782f0487e83363a9f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{
    "id": "/paginatedCollectionSchema",
    "type": "object",
    "properties": {
        "total": { "type": "number" },
        "perPage": { "type": "number" },
        "page": { "type": "number" }
    },
    "required": ["total", "perPage", "page"]
}