{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ConnectorTool", "title": "ConnectorTool", "type": "object", "properties": { "name": { "type": "string" }, "description": { "type": [ "string", "null" ] }, "input_schema": { "description": "Any type" }, "credit_type": { "type": "string" } }, "required": [ "name", "description", "input_schema", "credit_type" ], "description": "Full version of ConnectorTool serializer that includes input_schema details." }