{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ShipmentPaginatedList", "title": "ShipmentPaginatedList", "type": "object", "properties": { "shipments": { "type": "array", "items": { "$ref": "#/components/schemas/Shipment" } }, "total": { "type": "integer" }, "page": { "type": "integer" }, "pages": { "type": "integer" } } }