-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapi-request.schema.json
68 lines (68 loc) · 1.99 KB
/
api-request.schema.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
67
68
{
"$id": "https://oneteme.github.io/api-request.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "ApiResquet",
"type": "array",
"items": {
"allOf": [
{ "$ref": "https://oneteme.github.io/http-request.schema.json" },
{ "$ref": "#/definitions/api" }
]
},
"definitions": {
"api": {
"type": "object",
"properties" : {
"id": {
"type": "integer",
"description": "API identity [optional null by default]",
"minimum":0
},
"name": {
"type": "string",
"description": "API name [optional null by default]",
"pattern": "^\\w+$"
},
"version": {
"type": "integer",
"description": "API version [optional null by default]",
"minimum":0
},
"description": {
"type": "string",
"description": "API description [optional null by default]"
},
"comparisonConfig":{
"type": "object",
"description": "Response comparison configuration [optional null by default]",
"properties": {
"type": {
"type": "string",
"enum": ["JSON","CSV","TXT","ZIP"],
"description": "response type [required]"
}
},
"required": ["type"]
},
"executionConfig":{
"type": "object",
"description": "Api execution configuration [optional]",
"properties": {
"enabled": {
"type": "boolean",
"description": "enable api assertion execution [true by default]"
},
"parallel": {
"type": "boolean",
"description": "enable parallel stable & latest api execution [true by default]"
}
}
},
"stableApi": {
"$ref": "https://oneteme.github.io/http-request.schema.json" ,
"additionalProperties": false
}
}
}
}
}