Argo CD · Schema

v1alpha1ApplicationSourcePluginParameter

v1alpha1ApplicationSourcePluginParameter schema from Argo CD API

Continuous DeliveryContainersDeploymentGitOpsKubernetesCNCFOpen Source

Properties

Name Type Description
array array Array is the value of an array type parameter.
map object Map is the value of a map type parameter.
name string Name is the name identifying a parameter.
string string String_ is the value of a string type parameter.
View JSON Schema on GitHub

JSON Schema

argo-cd-v1alpha1-application-source-plugin-parameter-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-application-source-plugin-parameter-schema.json",
  "title": "v1alpha1ApplicationSourcePluginParameter",
  "description": "v1alpha1ApplicationSourcePluginParameter schema from Argo CD API",
  "type": "object",
  "properties": {
    "array": {
      "description": "Array is the value of an array type parameter.",
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "map": {
      "description": "Map is the value of a map type parameter.",
      "type": "object",
      "additionalProperties": {
        "type": "string"
      }
    },
    "name": {
      "description": "Name is the name identifying a parameter.",
      "type": "string"
    },
    "string": {
      "description": "String_ is the value of a string type parameter.",
      "type": "string"
    }
  }
}