ChatGPT · Schema
ResponseInputItemList
AgentsAIChatGPTEmbeddingsFine-TuningGPT-4GPT-5Language ModelOpenAIRealtime
Properties
| Name | Type | Description |
|---|---|---|
| object | string | The object type. |
| data | array | The list of input items. |
| has_more | boolean | Whether there are more items to retrieve. |
| first_id | string | The ID of the first item in the list. |
| last_id | string | The ID of the last item in the list. |
JSON Schema
{
"$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"
}
}
}