{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "CreateChatCompletionResponse", "type": "object", "description": "Represents a chat completion response returned by model.", "properties": { "id": { "type": "string", "description": "A unique identifier for the chat completion." }, "object": { "type": "string", "description": "The object type." }, "created": { "type": "integer", "description": "The Unix timestamp of when the chat completion was created." }, "model": { "type": "string", "description": "The model used for the chat completion." }, "choices": { "type": "array", "description": "A list of chat completion choices." }, "system_fingerprint": { "type": "string", "description": "The system fingerprint representing the backend configuration." } } }