CockroachDB · Schema

ListFoldersResponse

Paginated list of folders.

Cluster ManagementCloudDatabaseDistributed SQLInfrastructurePostgreSQL CompatibleSQL

Properties

Name Type Description
folders array Array of folder objects.
pagination object
View JSON Schema on GitHub

JSON Schema

cockroachdb-listfoldersresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ListFoldersResponse",
  "title": "ListFoldersResponse",
  "type": "object",
  "description": "Paginated list of folders.",
  "properties": {
    "folders": {
      "type": "array",
      "description": "Array of folder objects.",
      "items": {
        "$ref": "#/components/schemas/Folder"
      }
    },
    "pagination": {
      "$ref": "#/components/schemas/PaginationResponse"
    }
  }
}