forked from yannh/kubernetes-json-schema
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresourceclaimconsumerreference.json
40 lines (40 loc) · 1.09 KB
/
resourceclaimconsumerreference.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
{
"description": "ResourceClaimConsumerReference contains enough information to let you locate the consumer of a ResourceClaim. The user must be a resource in the same namespace as the ResourceClaim.",
"properties": {
"apiGroup": {
"description": "APIGroup is the group for the resource being referenced. It is empty for the core API. This matches the group in the APIVersion that is used when creating the resources.",
"type": [
"string",
"null"
]
},
"name": {
"description": "Name is the name of resource being referenced.",
"type": [
"string",
"null"
]
},
"resource": {
"description": "Resource is the type of resource being referenced, for example \"pods\".",
"type": [
"string",
"null"
]
},
"uid": {
"description": "UID identifies exactly one incarnation of the resource.",
"type": [
"string",
"null"
]
}
},
"required": [
"resource",
"name",
"uid"
],
"type": "object",
"$schema": "http://json-schema.org/schema#"
}