-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathswagger.json
83 lines (83 loc) · 1.45 KB
/
swagger.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"definitions": {
"GiveNewSchemaNameHere": {
"properties": {
"amount": {
"default": 1162,
"type": "integer"
},
"balance": {
"default": 718,
"type": "integer"
},
"currency": {
"default": "USD",
"type": "string"
},
"expectedPaymentDate": {
"default": "2018-03-02",
"format": "date",
"type": "string"
},
"id": {
"default": "1234",
"type": "string"
},
"ref": {
"default": "INV-1234",
"type": "string"
}
},
"type": "object"
}
},
"info": {
"title": "invoiceservice",
"version": "1.0.0",
"x-lastModified": "Aug 08, 2018 13:35PM PST"
},
"paths": {
"/api/invoices/{id}": {
"get": {
"operationId": "getApiInvoices_id",
"parameters": [
{
"description": "",
"format": "",
"in": "path",
"name": "id",
"required": true,
"type": "string"
}
],
"produces": [
"application/json"
],
"responses": {
"200": {
"description": "Success response",
"examples": {
"application/json": {
"amount": 1162,
"balance": 718,
"currency": "USD",
"expectedPaymentDate": "2018-03-02",
"id": "1234",
"ref": "INV-1234"
}
},
"schema": {
"$ref": "#/definitions/GiveNewSchemaNameHere"
}
}
}
}
}
},
"swagger": "2.0",
"host": "localhost:8080",
"schemes": [
"http"
],
"basePath": "/"
}