{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/runStepDetailsToolCallsCodeOutputLogsObject", "title": "Code interpreter log output", "type": "object", "description": "Text output from the Code Interpreter tool call as part of a run step.", "properties": { "type": { "description": "Always `logs`.", "type": "string", "enum": [ "logs" ], "x-ms-enum": { "name": "RunStepDetailsToolCallsCodeOutputLogsObjectType", "modelAsString": true, "values": [ { "value": "code_interpreter" } ] } }, "logs": { "type": "string", "description": "The text output from the Code Interpreter tool call." } }, "required": [ "type", "logs" ] }