forked from Nishchit14/swagger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenapi-additional-properties-openapi.json
More file actions
57 lines (57 loc) · 1.58 KB
/
openapi-additional-properties-openapi.json
File metadata and controls
57 lines (57 loc) · 1.58 KB
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
{
"openapi": "3.0.0",
"info": {
"version": "1.0.0",
"title": "OpenAPI Additional Properties",
"description": "This is a test spec",
"termsOfService": "http:\/\/exmple.com\/license\/"
},
"servers": [
"http:\/\/additional-properties.swagger.io\/v2"
],
"paths": {
"\/user": {
"post": {
"summary": "Add a new User to the store",
"description": "",
"operationId": "AddUser",
"deprecated": 0,
"parameters": [],
"responses": {
"405": {
"description": "Invalid input"
}
}
},
"put": {
"summary": "Update an existing User",
"description": "",
"operationId": "UpdateUser",
"deprecated": 0,
"parameters": [],
"responses": {
"405": {
"description": "Invalid input"
}
}
}
}
},
"components": {
"schemas": {
"User": {
"type": "object",
"properties": {
"id": {
"description": "",
"type": "integer"
},
"userStatus": {
"description": "User Status",
"type": "integer"
}
}
}
}
}
}