-
Notifications
You must be signed in to change notification settings - Fork 4
/
api-description.yml
224 lines (220 loc) · 5.56 KB
/
api-description.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
---
openapi: "3.0.0"
info:
description: |
Dot dot vote! This OpenAPI definition may become inaccurate as the application
evolves. Until such a point where this spec is used for automated acceptance
version: "1.0.0"
title: Dot dot vote
contact:
email: "[email protected]"
license:
name: "LGPL v3.0"
url: "https://www.gnu.org/licenses/lgpl-3.0.en.html"
servers:
- url: 'https://www.dotdotvote.com/api/v1'
description: Production/public environment
- url: 'http://localhost:8000/api/v1'
description: Local dev server (APIv1)
tags:
- name: "poll"
description: Poll manipulation APIs
externalDocs:
description: "Find out more"
url: "http://swagger.io"
paths:
/polls:
put:
tags:
- "poll"
summary: "Create a new poll"
description: "Create a new poll"
operationId: "createPoll"
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/InsertablePoll'
responses:
'201':
description: |
Poll created successfully
content:
application/json:
schema:
type: 'object'
properties:
poll:
type: string
description: 'A UUID for the generated poll'
example: 'e2b75a74-0dd9-4324-bc7e-4b1aa720f2f1'
"422":
description: |
Invalid JSON supplied
'500':
description: |
Some server side error has occurred.
'/polls/{uuid}':
get:
tags:
- poll
summary: 'Fetch the details of the given poll'
description: |
Access the Poll details and metadata, but _not_ the results
parameters:
- in: path
name: uuid
required: true
description: 'The UUID for the generated poll'
example: 'e2b75a74-0dd9-4324-bc7e-4b1aa720f2f1'
schema:
type: string
format: uuid
responses:
200:
description: Poll found
content:
application/json:
schema:
$ref: '#/components/schemas/PollResponse'
400:
description: |
Either the UUID parameter wasn't provided or it did not parse as a legitimate UUIDv4
404:
description: |
Poll not found
'/polls/{uuid}/vote':
post:
tags:
- poll
summary: 'Vote in the specified poll'
parameters:
- in: path
name: uuid
required: true
description: 'The UUID for the generated poll'
example: 'e2b75a74-0dd9-4324-bc7e-4b1aa720f2f1'
schema:
type: string
format: uuid
responses:
200:
description: Vote submitted
400:
description: |
Either the UUID parameter wasn't provided or it did not parse as a legitimate UUIDv4
404:
description: |
Poll not found
'/polls/{uuid}/results':
get:
tags:
- poll
summary: 'Fetch the results for the specified poll'
parameters:
- in: path
name: uuid
required: true
description: 'The UUID for the generated poll'
example: 'e2b75a74-0dd9-4324-bc7e-4b1aa720f2f1'
schema:
type: string
format: uuid
example: '8497479a-9f07-4530-9a5c-2824238d5975'
responses:
200:
description: Poll found
content:
application/json:
schema:
$ref: '#/components/schemas/PollResults'
400:
description: |
Either the UUID parameter wasn't provided or it did not parse as a legitimate UUIDv4
404:
description: |
Poll not found
components:
schemas:
PollResponse:
type: object
properties:
poll:
$ref: '#/components/schemas/RawPoll'
choices:
type: array
items:
$ref: '#/components/schemas/RawChoice'
PollResults:
type: object
properties:
poll:
$ref: '#/components/schemas/RawPoll'
choices:
type: array
items:
$ref: '#/components/schemas/RawChoice'
votes:
type: array
items:
$ref: '#/components/schemas/RawVote'
RawPoll:
type: object
properties:
id:
type: number
format: int32
uuid:
type: string
format: uuid
title:
type: string
created_at:
type: string
format: date-time
RawChoice:
type: object
properties:
id:
type: number
format: int32
poll_id:
type: number
format: int32
details:
type: string
created_at:
type: string
format: date-time
RawVote:
type: object
properties:
id:
type: number
format: int32
poll_id:
type: number
format: int32
choice_id:
type: number
format: int32
dots:
type: number
format: in32
voter:
type: string
created_at:
type: string
format: date-time
InsertablePoll:
type: "object"
properties:
title:
type: "string"
example: 'My amazing poll!'
choices:
type: "array"
items:
type: "string"
example: 'Choice 1'