-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopenapi.yaml
270 lines (259 loc) · 7.33 KB
/
openapi.yaml
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
openapi: 3.0.0
info:
title: XEffect
license:
name: MIT
version: 0.2.0
servers:
- url: https://api.maxstanley.uk/v1
x-amazon-apigateway-endpoint-configuration:
disableExecuteApiEndpoint: true
paths:
/xeffect/goals:
get:
summary: Lists all Goals
tags:
- Goals
responses:
"200":
description: An array of goals
content:
application/json:
schema:
$ref: "#/components/schemas/Goals"
x-amazon-apigateway-integration:
uri: ${invoke_arn.goal_get_all}
httpMethod: "POST"
passthroughBehavior: "when_no_match"
timeoutInMillis: 29000
type: "aws_proxy"
post:
summary: Create a Goal
tags:
- Goals
requestBody:
description: Goal to be created
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/NewGoal"
responses:
"201":
description: Null response
x-amazon-apigateway-integration:
uri: ${invoke_arn.goal_create}
httpMethod: "POST"
passthroughBehavior: "when_no_match"
timeoutInMillis: 29000
type: "aws_proxy"
options:
summary: CORS
description: Enable CORS by returning correct headers
tags:
- CORS
responses:
200:
$ref: "#/components/responses/200CORS"
x-amazon-apigateway-integration:
type: mock
timeoutInMillis: 29000
passthroughBehavior: "when_no_match"
requestTemplates:
application/json: '{ "statusCode": 200 }'
responses:
default:
statusCode: 200
responseParameters:
method.response.header.Access-Control-Allow-Headers: '''*'''
method.response.header.Access-Control-Allow-Methods: '''*'''
method.response.header.Access-Control-Allow-Origin: '''*'''
/xeffect/goals/{goalId}:
get:
summary: Returns information for a specific Goal
tags:
- Goals
parameters:
- name: goalId
in: path
required: true
description: The id of the goal to retrieve
schema:
type: string
responses:
"200":
description: The Goal information
x-amazon-apigateway-integration:
uri: ${invoke_arn.goal_get}
httpMethod: "POST"
passthroughBehavior: "when_no_match"
timeoutInMillis: 29000
type: "aws_proxy"
post:
summary: Perform an action on the specified Goal
tags:
- Goals
parameters:
- name: goalId
in: path
required: true
description: The id of the goal to retrieve
schema:
type: string
requestBody:
description: Goal to be created
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/GoalAction"
responses:
"200":
description: The updated Goal information
x-amazon-apigateway-integration:
uri: ${invoke_arn.goal_action}
httpMethod: "POST"
passthroughBehavior: "when_no_match"
timeoutInMillis: 29000
type: "aws_proxy"
options:
summary: CORS
description: Enable CORS by returning correct headers
tags:
- CORS
responses:
200:
$ref: "#/components/responses/200CORS"
x-amazon-apigateway-integration:
type: mock
timeoutInMillis: 29000
passthroughBehavior: "when_no_match"
requestTemplates:
application/json: '{ "statusCode": 200 }'
responses:
default:
statusCode: 200
responseParameters:
method.response.header.Access-Control-Allow-Headers: '''*'''
method.response.header.Access-Control-Allow-Methods: '''*'''
method.response.header.Access-Control-Allow-Origin: '''*'''
/xeffect/goals/{goalId}/completed/{date}:
get:
summary: Returns whether the specified goal was completed on the given day.
tags:
- Goals
parameters:
- name: goalId
in: path
required: true
description: The id of the goal to retrieve
schema:
type: string
- name: date
in: path
required: true
description: The date to check whether the goal was completed
schema:
type: string
responses:
"200":
description: Whether the goal was completed on this date
x-amazon-apigateway-integration:
uri: ${invoke_arn.goal_get_completed}
httpMethod: "POST"
passthroughBehavior: "when_no_match"
timeoutInMillis: 29000
type: "aws_proxy"
/xeffect/version:
get:
summary: Display current version
tags:
- Meta
responses:
"200":
description: The current deployed version
x-amazon-apigateway-integration:
uri: ${invoke_arn.version}
httpMethod: "POST"
passthroughBehavior: "when_no_match"
timeoutInMillis: 29000
type: "aws_proxy"
options:
summary: CORS
description: Enable CORS by returning correct headers
tags:
- CORS
responses:
200:
$ref: "#/components/responses/200CORS"
x-amazon-apigateway-integration:
type: mock
requestTemplates:
application/json: '{ "statusCode" : 200 }'
responses:
default:
statusCode: 200
responseParameters:
method.response.header.Access-Control-Allow-Headers: '''*'''
method.response.header.Access-Control-Allow-Methods: '''*'''
method.response.header.Access-Control-Allow-Origin: '''*'''
responseTemplates:
application/json: '{}'
components:
schemas:
NewGoal:
type: object
required:
- title
- motivation
properties:
title:
type: string
motivation:
type: string
Goal:
allOf:
- type: object
properties:
uuid:
type: string
- $ref: "#/components/schemas/NewGoal"
Goals:
type: array
items:
$ref: "#/components/schemas/Goal"
GoalAction:
allOf:
- type: object
required:
- action
properties:
action:
type: string
enum: [ mark_completed ]
- oneOf:
- $ref: "#/components/schemas/GoalActionMarkCompleted"
GoalActionMarkCompleted:
type: object
properties:
date:
type: string
isCompleted:
type: boolean
responses:
200CORS:
description: Default response for CORS method
headers:
Access-Control-Allow-Origin:
schema:
type: string
description: URIs that may access the resource
Access-Control-Allow-Methods:
schema:
type: string
description: Methods that may be used to access the resource
Access-Control-Allow-Headers:
schema:
type: string
description: Headers that may be used in the request to the resource
content: {}