{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "ChatCompletionResponse", "type": "object", "properties": { "id": { "type": "string", "description": "Unique identifier for the completion." }, "object": { "type": "string" }, "created": { "type": "integer", "description": "Unix timestamp of when the completion was created." }, "model": { "type": "string", "description": "The model used for the completion." }, "choices": { "type": "array" }, "usage": { "type": "object" } } }