CockroachDB · Schema

CreateFolderRequest

Request body for creating a new folder.

Cluster ManagementCloudDatabaseDistributed SQLInfrastructurePostgreSQL CompatibleSQL

Properties

Name Type Description
name string Name for the new folder.
parent_id string Parent folder ID to nest this folder under.
View JSON Schema on GitHub

JSON Schema

cockroachdb-createfolderrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateFolderRequest",
  "title": "CreateFolderRequest",
  "type": "object",
  "description": "Request body for creating a new folder.",
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Name for the new folder."
    },
    "parent_id": {
      "type": "string",
      "description": "Parent folder ID to nest this folder under."
    }
  }
}