{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CompletionTokensDetails", "title": "CompletionTokensDetails", "properties": { "accepted_prediction_tokens": { "anyOf": [ { "type": "integer" }, { "type": "null" } ], "title": "Accepted Prediction Tokens" }, "audio_tokens": { "anyOf": [ { "type": "integer" }, { "type": "null" } ], "title": "Audio Tokens" }, "reasoning_tokens": { "anyOf": [ { "type": "integer" }, { "type": "null" } ], "title": "Reasoning Tokens" }, "rejected_prediction_tokens": { "anyOf": [ { "type": "integer" }, { "type": "null" } ], "title": "Rejected Prediction Tokens" } }, "additionalProperties": true, "type": "object", "description": "Breakdown of tokens used in a completion." }