{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Function-Output", "title": "Function", "properties": { "arguments": { "type": "string", "title": "Arguments" }, "name": { "type": "string", "title": "Name" } }, "additionalProperties": true, "type": "object", "required": [ "arguments", "name" ], "description": "The function that the model called." }