A paginated list of content items
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ContentItemListResponse", "title": "ContentItemListResponse", "type": "object", "description": "A paginated list of content items", "properties": { "value": { "type": "array", "items": { "$ref": "#/components/schemas/ContentItem" }, "description": "Array of content items" }, "@odata.count": { "type": "integer", "description": "Total count of items matching the query" } } }