{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/agave/refs/heads/main/json-schema/unified-api-project-list-schema.json", "title": "ProjectList", "description": "Paginated list of projects.", "type": "object", "properties": { "data": { "type": "array", "description": "Array of project records.", "items": { "$ref": "#/components/schemas/Project" }, "example": [ "example_value" ] }, "next_cursor": { "type": "string", "description": "Cursor for the next page of results.", "example": "eyJpZCI6MTIzfQ==" }, "count": { "type": "integer", "description": "Number of records returned.", "example": 50 } } }