CockroachDB · Schema

CreateServiceAccountRequest

Request body for creating a new service account.

Cluster ManagementCloudDatabaseDistributed SQLInfrastructurePostgreSQL CompatibleSQL

Properties

Name Type Description
name string Name for the new service account.
description string Optional description of the service account.
View JSON Schema on GitHub

JSON Schema

cockroachdb-createserviceaccountrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateServiceAccountRequest",
  "title": "CreateServiceAccountRequest",
  "type": "object",
  "description": "Request body for creating a new service account.",
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Name for the new service account."
    },
    "description": {
      "type": "string",
      "description": "Optional description of the service account."
    }
  }
}