{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/WorkspaceList", "title": "WorkspaceList", "type": "object", "description": "Paginated list of workspaces", "properties": { "objects": { "type": "array", "items": { "$ref": "#/components/schemas/Workspace" } }, "offset": { "type": "integer", "description": "Current offset in the result set" }, "limit": { "type": "integer", "description": "Maximum number of results returned" }, "totalCount": { "type": "integer", "description": "Total number of workspaces available" } } }