-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopenapi.yaml
401 lines (401 loc) · 11 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
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
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
openapi: 3.0.0
info:
title: Users Resource API
description: Users are members of PetHubs platform. Use the user API calls to manage
the users related to your platform
termsOfService: pethub.com/api/terms
contact:
name: PetHub API
url: https://pethub.com/api
email: [email protected]
version: 1.0.0
servers:
- url: https://virtserver.swaggerhub.com/PetHub/users/1.0.0
description: SwaggerHub API Auto Mocking
- url: https://virtserver.swaggerhub.com/ivanpenev/users/1.0.0
description: SwaggerHub API Auto Mocking
- url: https://www.pethub.com/
description: standard server
tags:
- name: Manage Users
description: Get details about PetHub users
- name: Manage Users By Organization
description: Manage PetHub users specific to organization
paths:
/users:
get:
tags:
- Manage Users
summary: Get all users in PetHub's directory
description: Returns all users in Pethub's database. Information is specific
to the owner and not to the pets.
parameters:
- name: size
in: query
description: limits the number of entries returned on first page
required: false
allowEmptyValue: false
style: form
explode: true
schema:
maxLength: 30
minLength: 5
type: integer
default: 10
responses:
"200":
description: Successful response
content:
application/json:
schema:
title: list of users
type: array
items:
$ref: '#/components/schemas/Users'
security:
- PetHubAPIOauth:
- profiles:read
post:
tags:
- Manage Users
requestBody:
description: new user to be uploaded to PetHub's database
content:
application/json:
schema:
$ref: '#/components/schemas/User'
responses:
"201":
description: Successfully created new user in PetHub's database
content:
application/json:
schema:
$ref: '#/components/schemas/201New'
security:
- PetHubAPIOauth:
- profiles:edit
/users/{userID}:
get:
tags:
- Manage Users
parameters:
- name: userID
in: path
description: The user identification
required: true
style: simple
explode: false
schema:
type: string
example: johndoe1234
responses:
"200":
description: Successful response
content:
application/json:
schema:
$ref: '#/components/schemas/User'
security:
- PetHubAPIOauth:
- profiles:read
- profiles:edit
patch:
tags:
- Manage Users
parameters:
- name: userID
in: path
description: The user identification
required: true
style: simple
explode: false
schema:
type: string
example: johndoe1234
requestBody:
description: User Information to be updated
content:
application/json:
schema:
$ref: '#/components/schemas/userInformation'
responses:
"200":
description: Successful response
content:
application/json:
schema:
$ref: '#/components/schemas/returnUpdateInfo'
security:
- PetHubAPIOauth:
- profiles:edit
/{orgID}/users/:
get:
tags:
- Manage Users By Organization
summary: Return user information by organization
description: Get information about the users related to your organization
parameters:
- name: orgID
in: path
description: the unique ID for your organization
required: true
style: simple
explode: false
schema:
type: string
example: petlove1234
responses:
"200":
description: Successful response
content:
application/json:
schema:
$ref: '#/components/schemas/Users'
security:
- PetHubAPIOauth:
- profiles:read
- profiles:edit
post:
tags:
- Manage Users By Organization
summary: Add new user to organization and pethub database
description: Add a new user to PetHub's database and also link them to your
organization
parameters:
- name: orgID
in: path
description: the unique ID for your organization
required: true
style: simple
explode: false
schema:
type: string
example: petlove1234
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/User'
responses:
"201":
description: Successfully created new user in PetHub's database and linked
to your org
content:
application/json:
schema:
$ref: '#/components/schemas/201New'
security:
- PetHubAPIOauth:
- profiles:edit
/{orgID}/users/{userID}:
post:
tags:
- Manage Users By Organization
summary: Link a user to an organization
description: Adds a Pethub user to an organization's collection of users
parameters:
- name: userID
in: path
description: The user identification
required: true
style: simple
explode: false
schema:
type: string
example: johndoe1234
- name: orgID
in: path
description: the unique ID for your organization
required: true
style: simple
explode: false
schema:
type: string
example: petlove1234
responses:
"201":
description: Successfully created new user in PetHub's database and linked
to your org
content:
application/json:
schema:
$ref: '#/components/schemas/201add'
security:
- PetHubAPIOauth:
- profiles:read
- profiles:edit
components:
schemas:
"201New":
type: object
properties:
path:
type: string
example: api.pethub.com/users/johndoe12345678
allOf:
$ref: '#/components/schemas/User'
description: the 201 code for successfully creating a new user in PetHubs database
"201add":
type: object
properties:
path:
type: string
example: api.pethub.com/users/johndoe12345678
allOf:
$ref: '#/components/schemas/User'
description: the 201 code for successfully adding linking a user to an organization's
users
Users:
type: array
items:
$ref: '#/components/schemas/User'
User:
required:
- firstName
- id
- lastName
type: object
properties:
id:
type: string
description: The user ID
example: johndoe12345678
firstName:
type: string
description: The user's first name
example: John
lastName:
type: string
description: The user's last name
example: Doe
street:
type: string
description: The user's street
example: 1234 West Avenue
city:
type: string
description: The user's street
example: New York City
State/Province:
type: string
description: The user's state or province
example: NY
postalCode:
type: string
description: The user's postal/zip code
example: "10000"
country:
type: string
description: The user's country
example: USA
primaryEmail:
type: string
description: The user's primary email address
example: [email protected]
additionalEmails:
type: array
example: [email protected]
items:
type: string
petIds:
type: array
example:
- rocky1234
- charlie 2345
items:
type: string
returnUpdateInfo:
type: object
properties:
userID:
type: string
example: johndoe12345678
updatedInfo:
$ref: '#/components/schemas/userInformation'
description: the 201 code for successfully creating a new user in PetHubs database
userInformation:
type: object
properties:
street:
type: string
description: The user's street
example: 1234 West Avenue
city:
type: string
description: The user's street
example: New York City
State/Province:
type: string
description: The user's state or province
example: NY
postalCode:
type: string
description: The user's postal/zip code
example: "10000"
country:
type: string
description: The user's country
example: USA
primaryEmail:
type: string
description: The user's primary email address
example: [email protected]
additionalEmails:
type: array
example: [email protected]
items:
type: string
petIds:
type: array
example:
- rocky1234
- charlie 2345
items:
type: string
orgIDs:
type: array
description: The organizations related to this user
example:
- bigCityHS1234
- sunnyBeach5678
items:
type: string
parameters:
userID:
name: userID
in: path
description: The user identification
required: true
style: simple
explode: false
schema:
type: string
example: johndoe1234
orgID:
name: orgID
in: path
description: the unique ID for your organization
required: true
style: simple
explode: false
schema:
type: string
example: petlove1234
securitySchemes:
PetHubAPIOauth:
type: oauth2
flows:
authorizationCode:
authorizationUrl: /oauth/authorize
tokenUrl: /oauth/token
scopes:
medical:read: View medical information about a user's pet
medical:edit: Modify medical information about a user's pet
profiles:read: View profile information about a user and their pet
profiles:edit: Modify profile information about a user and their pet
trustedCircle:read: View Trusted Circle Contact information for a user's
pet
trustedCircle:edit: Modify Trusted Circle Contact information for a user's
pet
scansEvents:read: View scan and event information for a user's pet
scansEvents:edit: Modify scan and event information for a user's pet