{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ChatCompletionMessageFunctionToolCall-Input", "title": "ChatCompletionMessageFunctionToolCall", "properties": { "id": { "type": "string", "title": "Id" }, "function": { "$ref": "#/components/schemas/openai__types__chat__chat_completion_message_function_tool_call__Function" }, "type": { "type": "string", "const": "function", "title": "Type" } }, "additionalProperties": true, "type": "object", "required": [ "id", "function", "type" ], "description": "A call to a function tool created by the model." }