{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/EntityCollection", "title": "EntityCollection", "type": "object", "description": "OData collection response containing entity definition 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/Entity" }, "description": "Array of entity definition records.", "example": [] } } }