Paginated list of spaces.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SpaceList", "title": "SpaceList", "type": "object", "description": "Paginated list of spaces.", "properties": { "data": { "type": "array", "items": { "$ref": "#/components/schemas/Space" } }, "links": { "type": "object", "properties": { "self": { "type": "object", "properties": { "href": { "type": "string" } } }, "next": { "type": "object", "properties": { "href": { "type": "string" } } }, "prev": { "type": "object", "properties": { "href": { "type": "string" } } } } } } }