Argo Workflows · Schema

io.argoproj.workflow.v1alpha1.RawArtifact

RawArtifact allows raw string content to be placed as an artifact in a container

CNCFContainersData ProcessingKubernetesMachine LearningOpen SourceWorkflow Engine

Properties

Name Type Description
data string Data is the string contents of the artifact
View JSON Schema on GitHub

JSON Schema

argo-workflows-io-argoproj-workflow-v1alpha1-raw-artifact-schema.json Raw ↑
{
  "$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-raw-artifact-schema.json",
  "title": "io.argoproj.workflow.v1alpha1.RawArtifact",
  "description": "RawArtifact allows raw string content to be placed as an artifact in a container",
  "type": "object",
  "properties": {
    "data": {
      "description": "Data is the string contents of the artifact",
      "type": "string"
    }
  },
  "required": [
    "data"
  ]
}