Progress information for exporting a single shard
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ShardProgress", "title": "ShardProgress", "type": "object", "description": "Progress information for exporting a single shard", "properties": { "status": { "type": "string", "description": "Status of this shard's export", "enum": [ "TRANSFERRING", "SUCCESS", "FAILED", "SKIPPED" ] }, "objectsExported": { "type": "integer", "format": "int64", "description": "Number of objects exported from this shard" }, "error": { "type": "string", "description": "Error message if this shard's export failed" }, "skipReason": { "type": "string", "description": "Reason why this shard was skipped (e.g. tenant status)" } } }