Argo CD · Schema

v1alpha1GnuPGPublicKey

v1alpha1GnuPGPublicKey schema from Argo CD API

Continuous DeliveryContainersDeploymentGitOpsKubernetesCNCFOpen Source

Properties

Name Type Description
fingerprint string
keyData string
keyID string
owner string
subType string
trust string
View JSON Schema on GitHub

JSON Schema

argo-cd-v1alpha1-gnu-pg-public-key-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-v1alpha1-gnu-pg-public-key-schema.json",
  "title": "v1alpha1GnuPGPublicKey",
  "description": "v1alpha1GnuPGPublicKey schema from Argo CD API",
  "type": "object",
  "properties": {
    "fingerprint": {
      "type": "string",
      "title": "Fingerprint is the fingerprint of the key"
    },
    "keyData": {
      "type": "string",
      "title": "KeyData holds the raw key data, in base64 encoded format"
    },
    "keyID": {
      "type": "string",
      "title": "KeyID specifies the key ID, in hexadecimal string format"
    },
    "owner": {
      "type": "string",
      "title": "Owner holds the owner identification, e.g. a name and e-mail address"
    },
    "subType": {
      "type": "string",
      "title": "SubType holds the key's subtype (e.g. rsa4096)"
    },
    "trust": {
      "type": "string",
      "title": "Trust holds the level of trust assigned to this key"
    }
  }
}