-
Notifications
You must be signed in to change notification settings - Fork 2
/
response-codes
135 lines (135 loc) · 5.06 KB
/
response-codes
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"openapi": "3.0.2",
"info": {
"title": "HTTP Response Codes",
"version": "1.0.1"
},
"paths": {
"/widgets/{widgetId}": {
"summary": "Path used to manage a single Widget.",
"description": "The REST endpoint/path used to get, update, and delete single instances of an `Widget`. This path contains `GET`, `PUT`, and `DELETE` operations used to perform the get, update, and delete tasks, respectively.",
"get": {
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Widget"
}
}
},
"description": "Successful response - returns a single `Widget`."
}
},
"operationId": "getWidget",
"summary": "Get a Widget",
"description": "Gets the details of a single instance of a `Widget`."
},
"put": {
"requestBody": {
"description": "Updated `Widget` information.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Widget"
}
}
},
"required": true
},
"responses": {
"202": {
"description": "Successful response."
}
},
"operationId": "updateWidget",
"summary": "Update a Widget",
"description": "Updates an existing `Widget`."
},
"delete": {
"responses": {
"204": {
"description": "Successful response."
}
},
"operationId": "deleteWidget",
"summary": "Delete a Widget",
"description": "Deletes an existing `Widget`."
},
"parameters": [
{
"name": "widgetId",
"description": "A unique identifier for a `Widget`.",
"schema": {
"type": "string"
},
"in": "path",
"required": true
}
]
},
"/widgets": {
"summary": "Path used to manage the list of widgets.",
"description": "The REST endpoint/path used to list and create zero or more `Widget` entities. This path contains a `GET` and `POST` operation to perform the list and create tasks, respectively.",
"get": {
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Widget"
}
}
}
},
"description": "Successful response - returns an array of `Widget` entities."
},
"352": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Widget"
}
}
},
"description": "Test response."
}
},
"operationId": "getWidgets",
"summary": "List All Widgets",
"description": "Gets a list of all `Widget` entities."
},
"post": {
"requestBody": {
"description": "A new `Widget` to be created.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Widget"
}
}
},
"required": true
},
"responses": {
"201": {
"description": "Successful response."
}
},
"operationId": "createWidget",
"summary": "Create a Widget",
"description": "Creates a new instance of a `Widget`."
}
}
},
"components": {
"schemas": {
"Widget": {
"description": "",
"type": "object"
}
}
}
}