{ "$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." } } }