File tree Expand file tree Collapse file tree 1 file changed +46
-0
lines changed Expand file tree Collapse file tree 1 file changed +46
-0
lines changed Original file line number Diff line number Diff line change
1
+ openapi : 3.0.3
2
+ info :
3
+ title : My API
4
+ version : 1.0.0
5
+ contact : {}
6
+ servers :
7
+ - url : " https://api.server.test/v1"
8
+ paths :
9
+ /test :
10
+ post :
11
+ summary : /test
12
+ description : /test
13
+ operationId : test
14
+ requestBody :
15
+ content :
16
+ text/xml :
17
+ schema :
18
+ type : array
19
+ items :
20
+ type : object
21
+ properties :
22
+ issue :
23
+ type : string
24
+ description : information about the issue
25
+ maxLength : 150
26
+ action :
27
+ type : string
28
+ description : what corrective action needs to be taken to resolve the issue.
29
+ maxLength : 150
30
+ example : |
31
+ <Errors>
32
+ <error>
33
+ <issue>Mandatory field are missing.</issue>
34
+ <action>Resend request with valid values, any one of Hello or World.</action>
35
+ </error>
36
+ </Errors>
37
+ responses :
38
+ " 200 " :
39
+ description : OK
40
+ content :
41
+ application/json :
42
+ examples :
43
+ OK :
44
+ value :
45
+ Data : Postman
46
+ tags : []
You can’t perform that action at this time.
0 commit comments