{ "$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-gcs-artifact-schema.json", "title": "io.argoproj.workflow.v1alpha1.GCSArtifact", "description": "GCSArtifact is the location of a GCS artifact", "type": "object", "properties": { "bucket": { "description": "Bucket is the name of the bucket", "type": "string" }, "key": { "description": "Key is the path in the bucket where the artifact resides", "type": "string" }, "serviceAccountKeySecret": { "description": "ServiceAccountKeySecret is the secret selector to the bucket's service account key", "$ref": "#/definitions/io.k8s.api.core.v1.SecretKeySelector" } }, "required": [ "key" ] }