forked from yannh/kubernetes-json-schema
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheventseries.json
31 lines (31 loc) · 907 Bytes
/
eventseries.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
{
"description": "EventSeries contain information on series of events, i.e. thing that was/is happening continuously for some time.",
"properties": {
"count": {
"description": "Number of occurrences in this series up to the last heartbeat time",
"format": "int32",
"type": [
"integer",
"null"
]
},
"lastObservedTime": {
"$ref": "_definitions.json#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime",
"description": "Time when last Event from the series was seen before last heartbeat."
},
"state": {
"description": "Information whether this series is ongoing or finished. Deprecated. Planned removal for 1.18",
"type": [
"string",
"null"
]
}
},
"required": [
"count",
"lastObservedTime",
"state"
],
"type": "object",
"$schema": "http://json-schema.org/schema#"
}