Argo CD · JSON Structure

Argo Cd Cluster Oidc Config Structure

clusterOIDCConfig schema from Argo CD API

Type: object Properties: 7
Continuous DeliveryContainersDeploymentGitOpsKubernetesCNCFOpen Source

clusterOIDCConfig is a JSON Structure definition published by Argo CD, describing 7 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

cliClientID clientID enablePKCEAuthentication idTokenClaims issuer name scopes

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/argo-cd/refs/heads/main/json-structure/argo-cd-cluster-oidc-config-structure.json",
  "name": "clusterOIDCConfig",
  "description": "clusterOIDCConfig schema from Argo CD API",
  "type": "object",
  "properties": {
    "cliClientID": {
      "type": "string"
    },
    "clientID": {
      "type": "string"
    },
    "enablePKCEAuthentication": {
      "type": "boolean"
    },
    "idTokenClaims": {
      "type": "object",
      "additionalProperties": {
        "$ref": "#/definitions/oidcClaim"
      }
    },
    "issuer": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "scopes": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  }
}