{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/submitToolOutputsRunRequest", "title": "submitToolOutputsRunRequest", "type": "object", "additionalProperties": false, "properties": { "tool_outputs": { "description": "A list of tools for which the outputs are being submitted.", "type": "array", "items": { "type": "object", "properties": { "tool_call_id": { "type": "string", "description": "The ID of the tool call in the `required_action` object within the run object the output is being submitted for." }, "output": { "type": "string", "description": "The output of the tool call to be submitted to continue the run." } } } } }, "required": [ "tool_outputs" ] }