Argo CD · Schema

accountAccount

accountAccount schema from Argo CD API

Continuous DeliveryContainersDeploymentGitOpsKubernetesCNCFOpen Source

Properties

Name Type Description
capabilities array
enabled boolean
name string
tokens array
View JSON Schema on GitHub

JSON Schema

argo-cd-account-account-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/argo-cd/refs/heads/main/json-schema/argo-cd-account-account-schema.json",
  "title": "accountAccount",
  "description": "accountAccount schema from Argo CD API",
  "type": "object",
  "properties": {
    "capabilities": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "enabled": {
      "type": "boolean"
    },
    "name": {
      "type": "string"
    },
    "tokens": {
      "type": "array",
      "items": {
        "$ref": "#/definitions/accountToken"
      }
    }
  }
}