forked from yannh/kubernetes-json-schema
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprioritylevelconfigurationcondition.json
39 lines (39 loc) · 1.19 KB
/
prioritylevelconfigurationcondition.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
{
"description": "PriorityLevelConfigurationCondition defines the condition of priority level.",
"properties": {
"lastTransitionTime": {
"$ref": "https://raw.githubusercontent.com/yannh/kubernetes-json-schema/master/v1.19.9/_definitions.json#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
"description": "`lastTransitionTime` is the last time the condition transitioned from one status to another."
},
"message": {
"description": "`message` is a human-readable message indicating details about last transition.",
"type": [
"string",
"null"
]
},
"reason": {
"description": "`reason` is a unique, one-word, CamelCase reason for the condition's last transition.",
"type": [
"string",
"null"
]
},
"status": {
"description": "`status` is the status of the condition. Can be True, False, Unknown. Required.",
"type": [
"string",
"null"
]
},
"type": {
"description": "`type` is the type of the condition. Required.",
"type": [
"string",
"null"
]
}
},
"type": "object",
"$schema": "http://json-schema.org/schema#"
}