{ "$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-kustomize-options-schema.json", "title": "v1alpha1KustomizeOptions", "description": "v1alpha1KustomizeOptions schema from Argo CD API", "type": "object", "properties": { "binaryPath": { "description": "Deprecated: Use settings.Settings instead. See: settings.Settings.KustomizeVersions.\nIf this field is set, it will be used as the Kustomize binary path.\nOtherwise, Versions is used.", "type": "string", "title": "BinaryPath holds optional path to kustomize binary" }, "buildOptions": { "type": "string", "title": "BuildOptions is a string of build parameters to use when calling `kustomize build`" }, "versions": { "description": "Versions is a list of Kustomize versions and their corresponding binary paths and build options.", "type": "array", "items": { "$ref": "#/definitions/v1alpha1KustomizeVersion" } } } }