Properties
| Name | Type | Description |
|---|---|---|
| name | string | |
| namespace | string | |
| uid | string | |
| resourceVersion | string | |
| creationTimestamp | string | |
| labels | object | |
| annotations | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ObjectMeta",
"title": "ObjectMeta",
"type": "object",
"properties": {
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"uid": {
"type": "string"
},
"resourceVersion": {
"type": "string"
},
"creationTimestamp": {
"type": "string",
"format": "date-time"
},
"labels": {
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"annotations": {
"type": "object",
"additionalProperties": {
"type": "string"
}
}
}
}