Skip to content

Commit 2dd0fc6

Browse files
committed
Generate json-schemas for 3.7
1 parent 902df67 commit 2dd0fc6

File tree

83 files changed

+17323
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

83 files changed

+17323
-0
lines changed

json_schemas/acl/3.7.json

+78
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
{
2+
"properties": {
3+
"config": {
4+
"properties": {
5+
"allow": {
6+
"description": "Arbitrary group names that are allowed to consume the service or route. One of `config.allow` or `config.deny` must be specified.",
7+
"items": {
8+
"required": [],
9+
"type": "string"
10+
},
11+
"type": "array"
12+
},
13+
"deny": {
14+
"description": "Arbitrary group names that are not allowed to consume the service or route. One of `config.allow` or `config.deny` must be specified.",
15+
"items": {
16+
"required": [],
17+
"type": "string"
18+
},
19+
"type": "array"
20+
},
21+
"hide_groups_header": {
22+
"default": false,
23+
"description": "If enabled (`true`), prevents the `X-Consumer-Groups` header from being sent in the request to the upstream service.",
24+
"type": "boolean"
25+
},
26+
"include_consumer_groups": {
27+
"default": false,
28+
"type": "boolean"
29+
}
30+
},
31+
"required": [],
32+
"type": "object"
33+
},
34+
"protocols": {
35+
"default": [
36+
"grpc",
37+
"grpcs",
38+
"http",
39+
"https"
40+
],
41+
"description": "A set of strings representing HTTP protocols.",
42+
"items": {
43+
"enum": [
44+
"grpc",
45+
"grpcs",
46+
"http",
47+
"https"
48+
],
49+
"required": [],
50+
"type": "string"
51+
},
52+
"type": "array"
53+
},
54+
"route": {
55+
"additionalProperties": false,
56+
"description": "If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.",
57+
"properties": {
58+
"id": {
59+
"type": "string"
60+
}
61+
},
62+
"required": [],
63+
"type": "object"
64+
},
65+
"service": {
66+
"additionalProperties": false,
67+
"description": "If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.",
68+
"properties": {
69+
"id": {
70+
"type": "string"
71+
}
72+
},
73+
"required": [],
74+
"type": "object"
75+
}
76+
},
77+
"required": []
78+
}

0 commit comments

Comments
 (0)