CockroachDB · Schema

ListAvailableRegionsResponse

Paginated list of available cloud regions.

Cluster ManagementCloudDatabaseDistributed SQLInfrastructurePostgreSQL CompatibleSQL

Properties

Name Type Description
regions array Array of available region objects.
pagination object
View JSON Schema on GitHub

JSON Schema

cockroachdb-listavailableregionsresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ListAvailableRegionsResponse",
  "title": "ListAvailableRegionsResponse",
  "type": "object",
  "description": "Paginated list of available cloud regions.",
  "properties": {
    "regions": {
      "type": "array",
      "description": "Array of available region objects.",
      "items": {
        "$ref": "#/components/schemas/AvailableRegion"
      }
    },
    "pagination": {
      "$ref": "#/components/schemas/PaginationResponse"
    }
  }
}