-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapi-platform-admin-api.yaml
More file actions
279 lines (261 loc) · 6.6 KB
/
Copy pathapi-platform-admin-api.yaml
File metadata and controls
279 lines (261 loc) · 6.6 KB
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
openapi: 3.0.3
info:
title: API Platform Admin API
description: API to access API Platform data
version: '1.0'
servers:
- url: /
paths:
/users/query:
post:
description: Get verified user query
requestBody:
required: true
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/userQueryRequest'
responses:
"200":
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/user'
"404":
description: User could not be found
content:
application/json:
schema:
$ref: '#/components/schemas/errorResponse'
example:
code: NOT_FOUND
message: User could not be found
/applications:
get:
description: Get application by client ID
responses:
"200":
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/applications'
"404":
description: Application could not be found
content:
application/json:
schema:
$ref: '#/components/schemas/errorResponse'
example:
code: NOT_FOUND
message: Application could not be found
parameters:
- name: clientId
description: A unique key to applications
in: query
required: true
schema:
$ref: '#/components/schemas/clientId'
/applications/{applicationId}:
get:
description: Get application
responses:
"200":
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/applicationWithUsers'
"404":
description: Application could not be found
content:
application/json:
schema:
$ref: '#/components/schemas/errorResponse'
example:
code: NOT_FOUND
message: Application could not be found
parameters:
- name: applicationId
in: path
required: true
schema:
$ref: '#/components/schemas/applicationId'
/apis:
get:
description: Get API by service name and environment
responses:
"200":
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/apiData'
"404":
description: API could not be found
content:
application/json:
schema:
$ref: '#/components/schemas/errorResponse'
example:
code: NOT_FOUND
message: API could not be found
parameters:
- name: serviceName
in: query
required: true
schema:
$ref: '#/components/schemas/serviceName'
- name: environment
in: query
required: true
schema:
$ref: '#/components/schemas/environment'
components:
schemas:
apiContext:
type: string
example: test/api
apiData:
type: object
properties:
serviceName:
$ref: '#/components/schemas/serviceName'
context:
$ref: '#/components/schemas/apiContext'
name:
type: string
example: My API
description:
type: string
example: This is my API
versions:
$ref: '#/components/schemas/apiVersions'
apiVersions:
type: object
additionalProperties:
$ref: '#/components/schemas/apiVersion'
example:
'1.0':
versionNbr: '1.0'
status: ALPHA
endpoints:
- uriPattern: /user/{id}
method: GET
apiVersionNumber:
type: string
example: '1.0'
apiVersion:
type: object
properties:
versionNbr:
$ref: '#/components/schemas/apiVersionNumber'
status:
type: string
enum:
- ALPHA
- BETA
- STABLE
- DEPRECATED
- RETIRED
endpoints:
type: array
items:
$ref: '#/components/schemas/endpoint'
applicationId:
type: string
description: UUID
example: 9dd2c894-6d93-11ee-b962-0242ac120002
applications:
type: array
items:
$ref: '#/components/schemas/application'
application:
type: object
properties:
applicationId:
$ref: '#/components/schemas/applicationId'
name:
type: string
example: My application
environment:
$ref: '#/components/schemas/environment'
applicationWithUsers:
type: object
properties:
applicationId:
$ref: '#/components/schemas/applicationId'
name:
type: string
example: My application
environment:
$ref: '#/components/schemas/environment'
users:
$ref: '#/components/schemas/users'
endpoint:
type: object
properties:
uriPattern:
type: string
example: /user/{id}
method:
type: string
enum:
- GET
- POST
- PUT
- PATCH
- DELETE
- OPTIONS
- HEAD
environment:
type: string
enum:
- PRODUCTION
- SANDBOX
clientId:
type: string
description: UUID
example: 335b9152-6d94-11ee-b962-0242ac120002
serviceName:
type: string
example: test-api
userQueryRequest:
type: object
properties:
sessionId:
type: string
description: UUID. Session ID of a logged-in user
required: true
example: 1b580e34-774c-11ee-b962-0242ac120002
userId:
type: string
description: UUID
example: 500e372e-6d93-11ee-b962-0242ac120002
users:
type: array
description: Verified users
items:
$ref: '#/components/schemas/user'
user:
type: object
properties:
firstName:
type: string
example: Ana
lastName:
type: string
example: Gram
userId:
$ref: '#/components/schemas/userId'
email:
type: string
example: ana.gram@example.com
errorResponse:
type: object
properties:
code:
type: string
message:
type: string