{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "Usage", "type": "object", "description": "Usage statistics for the API call.", "properties": { "prompt_tokens": { "type": "integer", "description": "Number of tokens in the prompt." }, "completion_tokens": { "type": "integer", "description": "Number of tokens in the generated completion." }, "total_tokens": { "type": "integer", "description": "Total number of tokens used in the request." } } }