A paginated list of organizations.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/OrganizationPage", "title": "OrganizationPage", "type": "object", "description": "A paginated list of organizations.", "properties": { "data": { "type": "array", "items": { "$ref": "#/components/schemas/Organization" }, "description": "The list of organizations.", "example": [] }, "links": { "$ref": "#/components/schemas/PaginationLinks" } } }