{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://api-evangelist.github.io/weaviate/json-schema/weaviate-export-create-response-schema.json", "title": "ExportCreateResponse", "description": "Response from creating an export operation", "type": "object", "properties": { "id": { "type": "string", "description": "Unique identifier for this export" }, "backend": { "type": "string", "description": "The backend storage system used" }, "path": { "type": "string", "description": "Full path where the export is being written" }, "status": { "type": "string", "description": "Current status of the export", "enum": [ "STARTED" ] }, "startedAt": { "type": "string", "format": "date-time", "description": "When the export started" }, "classes": { "type": "array", "description": "List of collections being exported", "items": { "type": "string" } } } }