Weaviate · JSON Structure

Weaviate Backup Create Status Response Structure

The definition of a backup create metadata

Type: object Properties: 8
Vector DatabaseAIMachine LearningSemantic SearchOpen SourceGraphQLKubernetes

Weaviate Backup Create Status Response Structure is a JSON Structure definition published by Weaviate, describing 8 properties. It conforms to the https://json-structure.org/meta/extended/v0/# meta-schema.

Properties

id backend path error status startedAt completedAt size

Meta-schema: https://json-structure.org/meta/extended/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/extended/v0/#",
  "$id": "https://api-evangelist.github.io/weaviate/json-structure/weaviate-backup-create-status-response-structure.json",
  "title": "BackupCreateStatusResponse",
  "description": "The definition of a backup create metadata",
  "type": "object",
  "properties": {
    "id": {
      "type": "str",
      "description": "The ID of the backup. Must be URL-safe and work as a filesystem path, only lowercase, numbers, underscore, minus characters allowed."
    },
    "backend": {
      "type": "str",
      "description": "Backup backend name e.g. filesystem, gcs, s3."
    },
    "path": {
      "type": "str",
      "description": "Destination path of backup files valid for the selected backend."
    },
    "error": {
      "type": "str",
      "description": "error message if creation failed"
    },
    "status": {
      "type": "str",
      "description": "phase of backup creation process"
    },
    "startedAt": {
      "type": "datetime",
      "description": "Timestamp when the backup process started"
    },
    "completedAt": {
      "type": "datetime",
      "description": "Timestamp when the backup process completed (successfully or with failure)"
    },
    "size": {
      "type": "float",
      "description": "Size of the backup in Gibs"
    }
  }
}