Perplexity · Schema

ListAsyncApiChatCompletionsResponse

Properties

Name Type Description
next_token object
requests array
View JSON Schema on GitHub

JSON Schema

perplexity-listasyncapichatcompletionsresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ListAsyncApiChatCompletionsResponse",
  "title": "ListAsyncApiChatCompletionsResponse",
  "properties": {
    "next_token": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Next Token"
    },
    "requests": {
      "items": {
        "$ref": "#/components/schemas/AsyncApiChatCompletionsResponseSummary"
      },
      "type": "array",
      "title": "Requests"
    }
  },
  "type": "object",
  "required": [
    "requests"
  ]
}