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