forked from yannh/kubernetes-json-schema
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanagedfieldsentry.json
43 lines (43 loc) · 1.83 KB
/
managedfieldsentry.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.",
"properties": {
"apiVersion": {
"description": "APIVersion defines the version of this resource that this field set applies to. The format is \"group/version\" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.",
"type": [
"string",
"null"
]
},
"fieldsType": {
"description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"",
"type": [
"string",
"null"
]
},
"fieldsV1": {
"$ref": "https://raw.githubusercontent.com/yannh/kubernetes-json-schema/master/v1.21.13/_definitions.json#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.FieldsV1",
"description": "FieldsV1 holds the first JSON version format as described in the \"FieldsV1\" type."
},
"manager": {
"description": "Manager is an identifier of the workflow managing these fields.",
"type": [
"string",
"null"
]
},
"operation": {
"description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.",
"type": [
"string",
"null"
]
},
"time": {
"$ref": "https://raw.githubusercontent.com/yannh/kubernetes-json-schema/master/v1.21.13/_definitions.json#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
"description": "Time is timestamp of when these fields were set. It should always be empty if Operation is 'Apply'"
}
},
"type": "object",
"$schema": "http://json-schema.org/schema#"
}