{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AccountCollection", "title": "AccountCollection", "type": "object", "description": "OData collection response containing account records.", "properties": { "@odata.context": { "type": "string", "format": "uri", "description": "OData context URL describing the collection.", "example": "https://www.example.com" }, "@odata.count": { "type": "integer", "description": "Total count of matching records (when $count=true).", "example": 10 }, "@odata.nextLink": { "type": "string", "format": "uri", "description": "URL to retrieve the next page of results.", "example": "https://www.example.com" }, "value": { "type": "array", "items": { "$ref": "#/components/schemas/Account" }, "description": "Array of account records.", "example": [] } } }