{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/argo-workflows/refs/heads/main/json-schema/argo-workflows-io-argoproj-workflow-v1alpha1-artifactory-artifact-schema.json", "title": "io.argoproj.workflow.v1alpha1.ArtifactoryArtifact", "description": "ArtifactoryArtifact is the location of an artifactory artifact", "type": "object", "properties": { "passwordSecret": { "description": "PasswordSecret is the secret selector to the repository password", "$ref": "#/definitions/io.k8s.api.core.v1.SecretKeySelector" }, "url": { "description": "URL of the artifact", "type": "string" }, "usernameSecret": { "description": "UsernameSecret is the secret selector to the repository username", "$ref": "#/definitions/io.k8s.api.core.v1.SecretKeySelector" } }, "required": [ "url" ] }