forked from yannh/kubernetes-json-schema
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflowschemastatus.json
67 lines (67 loc) · 2.01 KB
/
flowschemastatus.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"description": "FlowSchemaStatus represents the current state of a FlowSchema.",
"properties": {
"conditions": {
"description": "`conditions` is a list of the current states of FlowSchema.",
"items": {
"description": "FlowSchemaCondition describes conditions for a FlowSchema.",
"properties": {
"lastTransitionTime": {
"description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.",
"format": "date-time",
"type": [
"string",
"null"
]
},
"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",
"null"
],
"additionalProperties": false
},
"type": [
"array",
"null"
],
"x-kubernetes-list-map-keys": [
"type"
],
"x-kubernetes-list-type": "map",
"x-kubernetes-patch-merge-key": "type",
"x-kubernetes-patch-strategy": "merge"
}
},
"type": "object",
"additionalProperties": false,
"$schema": "http://json-schema.org/schema#"
}