{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "CreateCompletionResponse", "type": "object", "description": "Represents a completion response from the API.", "properties": { "id": { "type": "string", "description": "A unique identifier for the completion." }, "object": { "type": "string", "description": "The object type." }, "created": { "type": "integer", "description": "The Unix timestamp of when the completion was created." }, "model": { "type": "string", "description": "The model used for completion." }, "choices": { "type": "array", "description": "The list of completion choices." } } }