{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/agave/refs/heads/main/json-schema/unified-api-contract-list-schema.json", "title": "ContractList", "description": "Paginated list of contracts.", "type": "object", "properties": { "data": { "type": "array", "items": { "$ref": "#/components/schemas/Contract" }, "example": [ "example_value" ] }, "next_cursor": { "type": "string", "example": "eyJpZCI6MTIzfQ==" }, "count": { "type": "integer", "example": 10 } } }