{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/argo/refs/heads/main/json-schema/argo-workflows-workflow-schema.json", "title": "Workflow", "description": "An Argo Workflow resource", "type": "object", "properties": { "apiVersion": { "type": "string", "default": "argoproj.io/v1alpha1" }, "kind": { "type": "string", "default": "Workflow" }, "metadata": { "$ref": "#/components/schemas/ObjectMeta" }, "spec": { "$ref": "#/components/schemas/WorkflowSpec" }, "status": { "$ref": "#/components/schemas/WorkflowStatus" } } }