{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/IndexList", "title": "IndexList", "type": "object", "properties": { "origin": { "type": "string", "example": "example_value" }, "updated": { "type": "string", "format": "date-time", "example": "2026-01-15T10:30:00Z" }, "entry": { "type": "array", "items": { "$ref": "#/components/schemas/Index" }, "example": [] }, "paging": { "$ref": "#/components/schemas/Paging" } } }