{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/assistantFileObject", "title": "Assistant files", "type": "object", "description": "A list of [Files](/docs/api-reference/files) attached to an `assistant`.", "properties": { "id": { "description": "The identifier, which can be referenced in API endpoints.", "type": "string" }, "object": { "description": "The object type, which is always `assistant.file`.", "type": "string", "enum": [ "assistant.file" ], "x-ms-enum": { "name": "AssistantFileObjectType", "modelAsString": true, "values": [ { "value": "assistant.file" } ] } }, "created_at": { "description": "The Unix timestamp (in seconds) for when the assistant file was created.", "type": "integer" }, "assistant_id": { "description": "The assistant ID that the file is attached to.", "type": "string" } }, "required": [ "id", "object", "created_at", "assistant_id" ] }