{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/chatCompletionFunction", "title": "chatCompletionFunction", "type": "object", "properties": { "name": { "type": "string", "description": "The name of the function to be called. Must be a-z, A-Z, 0-9, or contain underscores and dashes, with a maximum length of 64." }, "description": { "type": "string", "description": "The description of what the function does." }, "parameters": { "$ref": "#/components/schemas/chatCompletionFunctionParameters" } }, "required": [ "name" ] }