forked from apiaddicts/openapi2postman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paths2p_config_file.json
37 lines (37 loc) · 1.1 KB
/
s2p_config_file.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
{
"api_name" : "pestore_file",
"examples" : {
"wrong" : {
"string" : "badstring",
"number" : -6,
"boolean" : false,
"object" : "badobject",
"array" : "badarray"
},
"successful" : {
"string" : "goodstring",
"number" : 6,
"boolean" : true
}
},
"environments":[
{
"name" : "DEV",
"postman_collection_name": "SWAGGER_API_TestSuite_DEV",
"postman_environment_name": "SWAGGER_API_TestSuiteEnv_DEV",
"host": "petstore.swagger.io",
"port": ":443",
"target_folder": "example"
},
{
"name" : "PROD",
"postman_collection_name": "SWAGGER_API_TestSuite_PROD",
"postman_environment_name": "SWAGGER_API_TestSuiteEnv_PROD",
"host": "petstore.swagger.io",
"port": "443",
"read_only": true,
"target_folder": "example",
"custom_authorizations_file": "authorizations.postman_collection.json"
}
]
}