{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/chatCompletionRequestMessageContentPartImage", "title": "chatCompletionRequestMessageContentPartImage", "allOf": [ { "$ref": "#/components/schemas/chatCompletionRequestMessageContentPart" }, { "type": "object", "properties": { "url": { "type": "string", "description": "Either a URL of the image or the base64 encoded image data.", "format": "uri" }, "detail": { "$ref": "#/components/schemas/imageDetailLevel" } } } ], "required": [ "url" ] }