{ "$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-exec-provider-config-schema.json", "title": "v1alpha1ExecProviderConfig", "description": "v1alpha1ExecProviderConfig schema from Argo CD API", "type": "object", "properties": { "apiVersion": { "type": "string", "title": "Preferred input version of the ExecInfo" }, "args": { "type": "array", "title": "Arguments to pass to the command when executing it", "items": { "type": "string" } }, "command": { "type": "string", "title": "Command to execute" }, "env": { "type": "object", "title": "Env defines additional environment variables to expose to the process", "additionalProperties": { "type": "string" } }, "installHint": { "type": "string", "title": "This text is shown to the user when the executable doesn't seem to be present" } } }