{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/openai__types__chat__chat_completion_token_logprob__TopLogprob", "title": "TopLogprob", "properties": { "token": { "type": "string", "title": "Token" }, "bytes": { "anyOf": [ { "items": { "type": "integer" }, "type": "array" }, { "type": "null" } ], "title": "Bytes" }, "logprob": { "type": "number", "title": "Logprob" } }, "additionalProperties": true, "type": "object", "required": [ "token", "logprob" ] }