{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PageMeta", "title": "PageMeta", "description": "Contains pagination query parameters and the total number of objects returned.", "type": "object", "properties": { "number": { "type": "number", "example": 1, "x-speakeasy-terraform-ignore": true }, "size": { "type": "number", "example": 10, "x-speakeasy-terraform-ignore": true }, "total": { "type": "number", "example": 100, "x-speakeasy-terraform-ignore": true } }, "required": [ "number", "size", "total" ] }