{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SpacePropertyArray", "title": "SpacePropertyArray", "required": [ "_links", "limit", "results", "size", "start" ], "type": "object", "properties": { "results": { "type": "array", "items": { "$ref": "#/components/schemas/SpaceProperty" }, "example": [] }, "start": { "type": "integer", "format": "int32", "example": 10 }, "limit": { "type": "integer", "format": "int32", "example": 10 }, "size": { "type": "integer", "format": "int32", "example": 10 }, "_links": { "$ref": "#/components/schemas/GenericLinks" } } }