Argo · Schema
ObjectMeta
Kubernetes object metadata
CNCFCI/CDGitOpsKubernetesOpen SourceProgressive DeliveryWorkflow Engine
Properties
| Name | Type | Description |
|---|---|---|
| name | string | |
| generateName | string | |
| namespace | string | |
| uid | string | |
| resourceVersion | string | |
| generation | integer | |
| creationTimestamp | string | |
| labels | object | |
| annotations | object |
JSON Schema
{
"$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"
}
}
}
}