Skip to content

Commit df28158

Browse files
Add RateLimitingPlugin schema. Closes #459 (#463)
Co-authored-by: Waldek Mastykarz <[email protected]>
1 parent f9b5e3a commit df28158

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"$schema": "https://json-schema.org/draft/2020-12/schema",
3+
"title": "Dev Proxy RateLimitingPlugin response",
4+
"description": "Mock for the Dev Proxy RateLimitingPlugin",
5+
"type": "object",
6+
"properties": {
7+
"body": {
8+
"type": [
9+
"object",
10+
"string"
11+
]
12+
},
13+
"statusCode": {
14+
"type": "integer"
15+
},
16+
"headers": {
17+
"type": "object",
18+
"additionalProperties": {
19+
"type": "string"
20+
}
21+
}
22+
}
23+
}

0 commit comments

Comments
 (0)