{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://api-evangelist.github.io/weaviate/json-schema/weaviate-export-create-request-schema.json", "title": "ExportCreateRequest", "description": "Request to create a new export operation", "type": "object", "properties": { "id": { "type": "string", "description": "Unique identifier for this export. Must be URL-safe." }, "file_format": { "type": "string", "description": "Output file format for the export.", "enum": [ "parquet" ] }, "include": { "type": "array", "description": "List of collection names to include in the export. Cannot be used with 'exclude'.", "items": { "type": "string" } }, "exclude": { "type": "array", "description": "List of collection names to exclude from the export. Cannot be used with 'include'.", "items": { "type": "string" } } }, "required": [ "id", "file_format" ] }