forked from cw-ozaki/kubernetes-json-schema
-
Notifications
You must be signed in to change notification settings - Fork 0
/
customresourcedefinitionnames.json
66 lines (66 loc) · 1.65 KB
/
customresourcedefinitionnames.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
{
"description": "CustomResourceDefinitionNames indicates the names to serve this CustomResourceDefinition",
"required": [
"plural",
"kind"
],
"properties": {
"categories": {
"description": "Categories is a list of grouped resources custom resources belong to (e.g. 'all')",
"type": [
"array",
"null"
],
"items": {
"type": [
"string",
"null"
]
}
},
"kind": {
"description": "Kind is the serialized kind of the resource. It is normally CamelCase and singular.",
"type": [
"string",
"null"
]
},
"listKind": {
"description": "ListKind is the serialized kind of the list for this resource. Defaults to <kind>List.",
"type": [
"string",
"null"
]
},
"plural": {
"description": "Plural is the plural name of the resource to serve. It must match the name of the CustomResourceDefinition-registration too: plural.group and it must be all lowercase.",
"type": [
"string",
"null"
]
},
"shortNames": {
"description": "ShortNames are short names for the resource. It must be all lowercase.",
"type": [
"array",
"null"
],
"items": {
"type": [
"string",
"null"
]
}
},
"singular": {
"description": "Singular is the singular name of the resource. It must be all lowercase Defaults to lowercased <kind>",
"type": [
"string",
"null"
]
}
},
"additionalProperties": false,
"$schema": "http://json-schema.org/schema#",
"type": "object"
}