CockroachDB · Schema

UpdateFolderSpecification

Specification for updating a folder.

Cluster ManagementCloudDatabaseDistributed SQLInfrastructurePostgreSQL CompatibleSQL

Properties

Name Type Description
name string New name for the folder.
parent_id string New parent folder ID to move the folder to.
View JSON Schema on GitHub

JSON Schema

cockroachdb-updatefolderspecification-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateFolderSpecification",
  "title": "UpdateFolderSpecification",
  "type": "object",
  "description": "Specification for updating a folder.",
  "properties": {
    "name": {
      "type": "string",
      "description": "New name for the folder."
    },
    "parent_id": {
      "type": "string",
      "description": "New parent folder ID to move the folder to."
    }
  }
}