Perplexity · Schema
TextDeltaEvent
Text delta event (type: "response.output_text.delta"). Contains incremental text content.
Properties
| Name | Type | Description |
|---|---|---|
| content_index | integer | |
| delta | string | |
| item_id | string | |
| output_index | integer | |
| sequence_number | integer | Monotonically increasing sequence number for event ordering |
| type | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/TextDeltaEvent",
"title": "TextDeltaEvent",
"description": "Text delta event (type: \"response.output_text.delta\").\nContains incremental text content.\n",
"properties": {
"content_index": {
"format": "int64",
"type": "integer"
},
"delta": {
"type": "string"
},
"item_id": {
"type": "string"
},
"output_index": {
"format": "int64",
"type": "integer"
},
"sequence_number": {
"description": "Monotonically increasing sequence number for event ordering",
"format": "int64",
"type": "integer"
},
"type": {
"$ref": "#/components/schemas/EventType"
}
},
"required": [
"type",
"sequence_number",
"item_id",
"output_index",
"content_index",
"delta"
],
"type": "object"
}