{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "ModelListResponse", "type": "object", "required": [ "data" ], "properties": { "data": { "type": "array", "items": { "$ref": "#/definitions/Model" } }, "nextCursor": { "description": "Opaque cursor to pass to the next call to continue after the last item. If None, there are no more items to return.", "type": [ "string", "null" ] } }, "definitions": { "InputModality": { "description": "Canonical user-input modality tags advertised by a model.", "oneOf": [ { "description": "Plain text turns and tool payloads.", "type": "string", "enum": [ "text" ] }, { "description": "Image attachments included in user turns.", "type": "string", "enum": [ "image" ] } ] }, "Model": { "type": "object", "required": [ "defaultReasoningEffort", "description", "displayName", "hidden", "id", "isDefault", "model", "supportedReasoningEfforts" ], "properties": { "additionalSpeedTiers": { "description": "Deprecated: use `serviceTiers` instead.", "default": [], "type": "array", "items": { "type": "string" } }, "availabilityNux": { "anyOf": [ { "$ref": "#/definitions/ModelAvailabilityNux" }, { "type": "null" } ] }, "defaultReasoningEffort": { "$ref": "#/definitions/ReasoningEffort" }, "description": { "type": "string" }, "displayName": { "type": "string" }, "hidden": { "type": "boolean" }, "id": { "type": "string" }, "inputModalities": { "default": [ "text", "image" ], "type": "array", "items": { "$ref": "#/definitions/InputModality" } }, "isDefault": { "type": "boolean" }, "model": { "type": "string" }, "serviceTiers": { "default": [], "type": "array", "items": { "$ref": "#/definitions/ModelServiceTier" } }, "supportedReasoningEfforts": { "type": "array", "items": { "$ref": "#/definitions/ReasoningEffortOption" } }, "supportsPersonality": { "default": false, "type": "boolean" }, "upgrade": { "type": [ "string", "null" ] }, "upgradeInfo": { "anyOf": [ { "$ref": "#/definitions/ModelUpgradeInfo" }, { "type": "null" } ] } } }, "ModelAvailabilityNux": { "type": "object", "required": [ "message" ], "properties": { "message": { "type": "string" } } }, "ModelServiceTier": { "type": "object", "required": [ "description", "id", "name" ], "properties": { "description": { "type": "string" }, "id": { "type": "string" }, "name": { "type": "string" } } }, "ModelUpgradeInfo": { "type": "object", "required": [ "model" ], "properties": { "migrationMarkdown": { "type": [ "string", "null" ] }, "model": { "type": "string" }, "modelLink": { "type": [ "string", "null" ] }, "upgradeCopy": { "type": [ "string", "null" ] } } }, "ReasoningEffort": { "description": "See https://platform.openai.com/docs/guides/reasoning?api-mode=responses#get-started-with-reasoning", "type": "string", "enum": [ "none", "minimal", "low", "medium", "high", "xhigh" ] }, "ReasoningEffortOption": { "type": "object", "required": [ "description", "reasoningEffort" ], "properties": { "description": { "type": "string" }, "reasoningEffort": { "$ref": "#/definitions/ReasoningEffort" } } } } }