{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/argo/refs/heads/main/json-schema/argo-workflows-object-meta-schema.json", "title": "ObjectMeta", "description": "Kubernetes object metadata", "type": "object", "properties": { "name": { "type": "string" }, "generateName": { "type": "string" }, "namespace": { "type": "string" }, "uid": { "type": "string" }, "resourceVersion": { "type": "string" }, "generation": { "type": "integer", "format": "int64" }, "creationTimestamp": { "type": "string", "format": "date-time" }, "labels": { "type": "object", "additionalProperties": { "type": "string" } }, "annotations": { "type": "object", "additionalProperties": { "type": "string" } } } }