{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ChatCost", "title": "ChatCost", "type": "object", "properties": { "type": { "type": "string", "description": "This is the type of cost, always 'chat' for this class.", "enum": [ "chat" ] }, "cost": { "type": "number", "description": "This is the cost of the component in USD." } }, "required": [ "type", "cost" ] }