{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ResponseOutputContentPart", "title": "ResponseOutputContentPart", "type": "object", "required": [ "type" ], "properties": { "type": { "type": "string", "description": "The type of the content part.", "enum": [ "output_text", "refusal" ], "example": "output_text" }, "text": { "type": "string", "description": "The text content.", "example": "example_value" }, "refusal": { "type": "string", "description": "The refusal text.", "example": "example_value" }, "annotations": { "type": "array", "description": "Annotations on the text, such as citations from file\nsearch or web search.\n", "items": { "$ref": "#/components/schemas/Annotation" }, "example": [] } } }