-
Notifications
You must be signed in to change notification settings - Fork 0
/
swagger.json
107 lines (107 loc) · 2.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"swagger": "2.0",
"info": {
"description": "This is the backend for Cloudbreak Cuisine. You can find out more about Cloudbreak Cuisine at [Cloudbreak Cuisine](https://github.com/josiahg/cloudbreak-cuisine-backend)",
"version": "0.1.0",
"title": "Cloudbreak Cuisine"
},
"basePath": "/api",
"tags": [
{
"name": "library",
"description": "Explore collection of items in Library",
"externalDocs": {
"description": "Find out more",
"url": "https://github.com/josiahg/cloudbreak-cuisine-backend"
}
}
],
"schemes": [
"http"
],
"paths": {
"/library": {
"get": {
"tags": [
"library"
],
"summary": "Returns a list of all Library items",
"description": "Library items will be returned as an array of JSON LibraryItem Objects",
"operationId": "findLibraryItems",
"produces": [
"application/json"
],
"responses": {
"200": {
"description": "successful operation",
"schema": {
"type": "array",
"items": {
"$ref": "#/definitions/LibraryItem"
}
}
},
"400": {
"description": "Invalid status value"
}
}
}
}
},
"definitions": {
"LibraryItem": {
"type": "object",
"required": [
"id",
"git_url"
],
"properties": {
"id": {
"type": "integer"
},
"name": {
"type": "string",
"example": "Awesome Bundle"
},
"description": {
"type": "string",
"example": "My awesome bundle does cool stuff"
},
"is_deployment_ready": {
"type": "boolean"
},
"image_url": {
"type": "string"
},
"git_url": {
"type": "string"
},
"zip_url": {
"type": "string"
}
},
"xml": {
"name": "LibraryItem"
}
},
"ApiResponse": {
"type": "object",
"properties": {
"code": {
"type": "integer",
"format": "int32"
},
"type": {
"type": "string"
},
"message": {
"type": "string"
}
}
}
},
"externalDocs": {
"description": "Find out more about Cloudbreak Cuisine",
"url": "https://github.com/josiahg/cloudbreak-cuisine-backend"
}
}