CockroachDB · Schema

ServiceAccount

A service account used for machine-to-machine authentication within a CockroachDB Cloud organization.

Cluster ManagementCloudDatabaseDistributed SQLInfrastructurePostgreSQL CompatibleSQL

Properties

Name Type Description
id string Unique identifier of the service account.
name string Name of the service account.
description string Description of the service account's purpose.
creator_id string User ID of the account creator.
created_at string Timestamp when the service account was created.
View JSON Schema on GitHub

JSON Schema

cockroachdb-serviceaccount-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ServiceAccount",
  "title": "ServiceAccount",
  "type": "object",
  "description": "A service account used for machine-to-machine authentication within a CockroachDB Cloud organization.",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier of the service account."
    },
    "name": {
      "type": "string",
      "description": "Name of the service account."
    },
    "description": {
      "type": "string",
      "description": "Description of the service account's purpose."
    },
    "creator_id": {
      "type": "string",
      "description": "User ID of the account creator."
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the service account was created."
    }
  }
}