CockroachDB · Schema

Restore

Represents a restore operation on a CockroachDB cluster.

Cluster ManagementCloudDatabaseDistributed SQLInfrastructurePostgreSQL CompatibleSQL

Properties

Name Type Description
id string Unique identifier of the restore operation.
cluster_id string ID of the destination cluster being restored into.
status string Current status of the restore operation.
created_at string Timestamp when the restore was initiated.
View JSON Schema on GitHub

JSON Schema

cockroachdb-restore-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Restore",
  "title": "Restore",
  "type": "object",
  "description": "Represents a restore operation on a CockroachDB cluster.",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier of the restore operation."
    },
    "cluster_id": {
      "type": "string",
      "description": "ID of the destination cluster being restored into."
    },
    "status": {
      "type": "string",
      "description": "Current status of the restore operation."
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the restore was initiated."
    }
  }
}