-
Notifications
You must be signed in to change notification settings - Fork 0
/
openapi.yml
332 lines (323 loc) · 8.43 KB
/
openapi.yml
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
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
openapi: '3.0.0'
info:
title: Barry API
contact:
name: XCOM Media
url: http://xcommedia.com.au/
email: [email protected]
version: 0.0.0
servers:
- url: http://localhost:3500/
description: Development server
- url: https://stage-barry-api.hosted.xcom.digital/
description: Staging server
- url: https://barry-api.hosted.xcom.digital/
description: Production server
components:
schemas:
Key:
type: string
example: st-Barry
Error:
type: object
properties:
code:
type: integer
example: 500
message:
type: string
example: Server error
payload:
type: object
required:
- code
- message
EmailHash:
type: string
description: SHA1 hash of a lowercase Email concatenated with a secret string, used to identify Subscribers.
minLength: 40
maxLength: 40
example: ac772dc8ed1f7786332e1bb8d0e9edede72e66d6
Email:
type: string
example: [email protected]
Subscriber:
type: object
properties:
email:
$ref: '#/components/schemas/Email'
required:
- email
SubscriberDetail:
allOf:
- $ref: '#/components/schemas/Subscriber'
- type: object
properties:
first_name:
type: string
example: 'Bob'
last_name:
type: string
example: 'Subscriber'
dob:
type: string
format: date
example: '1997-06-30'
country_iso:
type: string
maxLength: 2
example: 'AU'
postcode:
type: string
example: '4005'
entry_text:
type: string
example: 'I like hotdogs'
opt_in:
type: integer
example: 1
partner_opt_in:
type: integer
example: 0
required:
- first_name
- last_name
- country_iso
- entry_text
- opt_in
Friend:
allOf:
- $ref: '#/components/schemas/Subscriber'
- type: object
properties:
first_name:
type: string
example: 'Bob'
last_name:
type: string
example: 'Subscriber'
Validation:
type: object
properties:
dataPath:
type: string
example: ".email"
keyword:
type: string
example: "required"
message:
type: string
example: should have required property 'email'"
params:
type: object
properties:
missingProperty:
type: string
example: "email"
schemaPath:
type: string
example: "#/required"
required:
- dataPath
- message
parameters:
hash:
name: hash
in: path
description: Database identifier for a subscriber.
required: true
schema:
$ref: '#/components/schemas/EmailHash'
email:
name: email
in: path
description: Subscriber email address.
required: true
schema:
$ref: '#/components/schemas/Subscriber/properties/email'
key:
name: key
in: path
description: Competition key
required: true
schema:
$ref: '#/components/schemas/Key'
responses:
Subscriber:
description: Public Subscriber data
content:
application/json:
schema:
properties:
success:
type: boolean
example: true
hash:
$ref: '#/components/schemas/EmailHash'
SubscriberDetail:
description: Private Subscriber data
content:
application/json:
schema:
$ref: '#/components/schemas/SubscriberDetail'
ValidationError:
description: Validation Error
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/Error'
- type: object
properties:
errors:
type: array
items:
$ref: '#/components/schemas/Validation'
example:
code: 422
message: Unprocessable Entity
payload:
dataPath: "firstname"
keyword: "minLength"
message: "'' is too short"
schemaPath: "minLength"
NotFound:
description: The specified resource was not found
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
example:
code: 404
message: Not Found
Unauthorized:
description: Unauthorized
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
example:
code: 401
message: Unauthorized
Conflict:
description: Unauthorized
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
example:
code: 409
message: Conflict
IllegalInput:
description: Illegal input for operation.
UnexpectedError:
description: Unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
Mainenance:
description: Application is down for mainenance
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
example:
code: 503
message: Mainenance
securitySchemes:
ApiKeyAuth:
type: apiKey
name: token
in: query
BearerAuth:
type: http
scheme: bearer
paths:
/{key}/api/enter:
parameters:
- $ref: '#/components/parameters/key'
post:
summary: Create a new subscriber.
security:
- ApiKeyAuth: []
requestBody:
required: true
content:
x-www-form-urlencoded:
schema:
allOf:
- $ref: '#/components/schemas/SubscriberDetail'
- type: object
properties:
secret:
type: string
example: mysecret
responses:
'201':
$ref: '#/components/responses/Subscriber'
'401':
$ref: '#/components/responses/Unauthorized'
'400':
$ref: '#/components/responses/ValidationError'
'503':
$ref: '#/components/responses/Mainenance'
default:
$ref: '#/components/responses/UnexpectedError'
/{key}/api/email_share:
parameters:
- $ref: '#/components/parameters/key'
post:
summary: Send email share.
security:
- ApiKeyAuth: []
requestBody:
required: true
content:
x-www-form-urlencoded:
schema:
properties:
secret:
type: string
example: mysecret
hash:
$ref: '#/components/schemas/EmailHash'
friends:
type: array
items:
$ref: '#/components/schemas/Friend'
responses:
'201':
$ref: '#/components/responses/Subscriber'
'401':
$ref: '#/components/responses/Unauthorized'
'400':
$ref: '#/components/responses/ValidationError'
'503':
$ref: '#/components/responses/Mainenance'
default:
$ref: '#/components/responses/UnexpectedError'
/{key}/api/unsubscribe/{hash}:
parameters:
- $ref: '#/components/parameters/key'
- $ref: '#/components/parameters/hash'
- in: query
name: secret
schema:
type: string
required: true
get:
summary: Get existing entrant by hash.
security:
- ApiKeyAuth: []
responses:
'200':
$ref: '#/components/responses/SubscriberDetail'
'401':
$ref: '#/components/responses/Unauthorized'
'404':
$ref: '#/components/responses/NotFound'
'503':
$ref: '#/components/responses/Mainenance'
default:
$ref: '#/components/responses/UnexpectedError'