{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ResponseInputItemList", "title": "ResponseInputItemList", "type": "object", "required": [ "object", "data" ], "properties": { "object": { "type": "string", "description": "The object type.", "enum": [ "list" ], "example": "list" }, "data": { "type": "array", "description": "The list of input items.", "items": { "$ref": "#/components/schemas/ResponseInputItem" }, "example": [] }, "has_more": { "type": "boolean", "description": "Whether there are more items to retrieve.", "example": true }, "first_id": { "type": "string", "description": "The ID of the first item in the list.", "example": "500123" }, "last_id": { "type": "string", "description": "The ID of the last item in the list.", "example": "500123" } } }