Weaviate · Schema
ExportCreateResponse
Response from creating an export operation
Vector DatabaseAIMachine LearningSemantic SearchOpen SourceGraphQLKubernetes
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique identifier for this export |
| backend | string | The backend storage system used |
| path | string | Full path where the export is being written |
| status | string | Current status of the export |
| startedAt | string | When the export started |
| classes | array | List of collections being exported |
JSON Schema
{
"$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"
}
}
}
}