{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ChatCompletionContentPartTextParam", "title": "ChatCompletionContentPartTextParam", "properties": { "text": { "type": "string", "title": "Text" }, "type": { "type": "string", "const": "text", "title": "Type" } }, "type": "object", "required": [ "text", "type" ], "description": "Learn about [text inputs](https://platform.openai.com/docs/guides/text-generation)." }