CockroachDB · Schema

ListRestoresResponse

Paginated list of restore operations.

Cluster ManagementCloudDatabaseDistributed SQLInfrastructurePostgreSQL CompatibleSQL

Properties

Name Type Description
restores array Array of restore operation objects.
pagination object
View JSON Schema on GitHub

JSON Schema

cockroachdb-listrestoresresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ListRestoresResponse",
  "title": "ListRestoresResponse",
  "type": "object",
  "description": "Paginated list of restore operations.",
  "properties": {
    "restores": {
      "type": "array",
      "description": "Array of restore operation objects.",
      "items": {
        "$ref": "#/components/schemas/Restore"
      }
    },
    "pagination": {
      "$ref": "#/components/schemas/PaginationResponse"
    }
  }
}