-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopenapi.json
56 lines (56 loc) · 1.31 KB
/
openapi.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
{
"openapi": "3.0.0",
"components": {
"schemas": {
"PutDocumentRequest": {
"properties": {
"SomeObject": {
"type": "object",
"properties": {
"SomeAttribute": {
"type": "string"
}
}
}
}
}
},
"securitySchemes": {}
},
"info": {
"title": "",
"description": "",
"version": "72004659-2c9c-4b73-ae1a-62407f84baa6"
},
"paths": {
"/flavors": {
"get": {
"operationId": "iaas_read_flavor",
"summary": "Create User",
"description": "Creates a user and then sends a generated password email",
"responses": {
"201": {
"description": "A user object along with generated API Keys",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PutDocumentResponse"
}
}
}
},
"500": {
"description": "An error message when creating a new user",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponse"
}
}
}
}
}
}
}
}
}