{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/runStepDetailsToolCallsCodeOutputImageObject", "title": "Code interpreter image output", "type": "object", "properties": { "type": { "description": "Always `image`.", "type": "string", "enum": [ "image" ], "x-ms-enum": { "name": "RunStepDetailsToolCallsCodeOutputImageObjectType", "modelAsString": true, "values": [ { "value": "image" } ] } }, "image": { "type": "object", "properties": { "file_id": { "description": "The [file](/docs/api-reference/files) ID of the image.", "type": "string" } }, "required": [ "file_id" ] } }, "required": [ "type", "image" ] }