OpenAI APIs · Schema

ListResponse

Artificial IntelligenceEmbeddingsImage GenerationLanguage ModelsSpeech

Properties

Name Type Description
object string
data array
first_id string
last_id string
has_more boolean
View JSON Schema on GitHub

JSON Schema

openai-apis-listresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ListResponse",
  "title": "ListResponse",
  "type": "object",
  "properties": {
    "object": {
      "type": "string",
      "enum": [
        "list"
      ]
    },
    "data": {
      "type": "array",
      "items": {
        "type": "object"
      }
    },
    "first_id": {
      "type": "string"
    },
    "last_id": {
      "type": "string"
    },
    "has_more": {
      "type": "boolean"
    }
  }
}