-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenapi3.yaml
More file actions
546 lines (546 loc) · 18.3 KB
/
Copy pathopenapi3.yaml
File metadata and controls
546 lines (546 loc) · 18.3 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
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
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
openapi: 3.0.1
info:
title: ingestion-trigger
description: >-
Service that designed to validate and trigger ingestion of new layers from
raw data and update existing layers
version: 4.3.0
license:
name: MIT
url: https://opensource.org/licenses/MIT
security: []
paths:
/ingestion:
post:
operationId: ingestNewLayer
tags:
- ingestion
summary: start a process of creating new layer from raw data
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/IngestionNewLayerRequest'
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/SuccessfulIngestionResponse'
'400':
description: Bad request
content:
application/json:
schema:
$ref: >-
./Schema/ingestionTrigger/responses/ingestionTriggerResponses.yaml#/components/schemas/errorMessage
'409':
description: Conflict
content:
application/json:
schema:
$ref: >-
./Schema/ingestionTrigger/responses/ingestionTriggerResponses.yaml#/components/schemas/errorMessage
'422':
description: Unprocessable Content
content:
application/json:
schema:
$ref: >-
./Schema/ingestionTrigger/responses/ingestionTriggerResponses.yaml#/components/schemas/errorMessage
'500':
description: Internal Server Error
content:
application/json:
schema:
$ref: >-
./Schema/ingestionTrigger/responses/ingestionTriggerResponses.yaml#/components/schemas/errorMessage
/ingestion/{id}:
put:
operationId: updateLayer
tags:
- ingestion
summary: start a process of updating an existing layer from raw data
parameters:
- name: id
in: path
description: The id of the layer to update
required: true
schema:
$ref: ./Schema/core/layerMetadata.yaml#/components/schemas/LayerId
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/IngestionUpdateLayerRequest'
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/SuccessfulIngestionResponse'
'400':
description: Bad request
content:
application/json:
schema:
$ref: >-
./Schema/ingestionTrigger/responses/ingestionTriggerResponses.yaml#/components/schemas/errorMessage
'404':
description: Not Found
content:
application/json:
schema:
$ref: >-
./Schema/ingestionTrigger/responses/ingestionTriggerResponses.yaml#/components/schemas/errorMessage
'409':
description: Conflict
content:
application/json:
schema:
$ref: >-
./Schema/ingestionTrigger/responses/ingestionTriggerResponses.yaml#/components/schemas/errorMessage
'422':
description: Unprocessable Content
content:
application/json:
schema:
$ref: >-
./Schema/ingestionTrigger/responses/ingestionTriggerResponses.yaml#/components/schemas/errorMessage
'500':
description: Internal Server Error
content:
application/json:
schema:
$ref: >-
./Schema/ingestionTrigger/responses/ingestionTriggerResponses.yaml#/components/schemas/errorMessage
/ingestion/{jobId}/retry:
put:
operationId: retryIngestion
tags:
- ingestion
summary: retry a failed or completed ingestion job with task failures
description: >-
Retries an ingestion job that has failed or completed with errors. This
endpoint handles failures from any task in the ingestion workflow. The
job must be in FAILED or COMPLETED status.
parameters:
- name: jobId
in: path
description: The id of the job to retry
required: true
schema:
type: string
format: uuid
responses:
'200':
description: OK
'400':
description: >-
Bad request - Job status is not FAILED, SUSPENDED or required
parameters are missing
content:
application/json:
schema:
$ref: >-
./Schema/ingestionTrigger/responses/ingestionTriggerResponses.yaml#/components/schemas/errorMessage
'404':
description: Not Found - Job tasks not found
content:
application/json:
schema:
$ref: >-
./Schema/ingestionTrigger/responses/ingestionTriggerResponses.yaml#/components/schemas/errorMessage
'409':
description: Conflict - Shapefile has not changed
content:
application/json:
schema:
$ref: >-
./Schema/ingestionTrigger/responses/ingestionTriggerResponses.yaml#/components/schemas/errorMessage
'422':
description: Unprocessable Content
content:
application/json:
schema:
$ref: >-
./Schema/ingestionTrigger/responses/ingestionTriggerResponses.yaml#/components/schemas/errorMessage
'500':
description: Internal Server Error
content:
application/json:
schema:
$ref: >-
./Schema/ingestionTrigger/responses/ingestionTriggerResponses.yaml#/components/schemas/errorMessage
/ingestion/{jobId}/abort:
put:
operationId: abortIngestion
tags:
- ingestion
summary: abort an active ingestion job
description: >-
Aborts an ingestion job that is currently active or pending, preventing
any further processing.
parameters:
- name: jobId
in: path
description: The id of the job to abort
required: true
schema:
type: string
format: uuid
responses:
'200':
description: OK - Job aborted successfully
'400':
description: Bad request - Job status does not allow abort (COMPLETED or ABORTED)
content:
application/json:
schema:
$ref: >-
./Schema/ingestionTrigger/responses/ingestionTriggerResponses.yaml#/components/schemas/errorMessage
'404':
description: Not Found - Job does not exist
content:
application/json:
schema:
$ref: >-
./Schema/ingestionTrigger/responses/ingestionTriggerResponses.yaml#/components/schemas/errorMessage
'409':
description: >-
Conflict - Unable to abort job due to current state (e.g., already
completed or in finalization)
content:
application/json:
schema:
$ref: >-
./Schema/ingestionTrigger/responses/ingestionTriggerResponses.yaml#/components/schemas/errorMessage
'422':
description: Unprocessable Content
content:
application/json:
schema:
$ref: >-
./Schema/ingestionTrigger/responses/ingestionTriggerResponses.yaml#/components/schemas/errorMessage
'500':
description: Internal Server Error
content:
application/json:
schema:
$ref: >-
./Schema/ingestionTrigger/responses/ingestionTriggerResponses.yaml#/components/schemas/errorMessage
/ingestion/{jobId}/bypass-validation-errors:
post:
operationId: bypassValidationErrors
tags:
- ingestion
summary: bypass an active validation job with certain allowed validation errors
description: Bypasses validation errors for a specific ingestion job
parameters:
- name: jobId
in: path
description: The id of the job to bypass validation errors for
required: true
schema:
type: string
format: uuid
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/BypassValidationErrorsRequest'
responses:
'200':
description: OK
'400':
description: Bad request - Validation task is valid or not suspended
content:
application/json:
schema:
$ref: >-
./Schema/ingestionTrigger/responses/ingestionTriggerResponses.yaml#/components/schemas/errorMessage
'404':
description: Not Found - Job tasks not found
content:
application/json:
schema:
$ref: >-
./Schema/ingestionTrigger/responses/ingestionTriggerResponses.yaml#/components/schemas/errorMessage
'409':
description: Conflict
content:
application/json:
schema:
$ref: >-
./Schema/ingestionTrigger/responses/ingestionTriggerResponses.yaml#/components/schemas/errorMessage
'422':
description: Unprocessable Content
content:
application/json:
schema:
$ref: >-
./Schema/ingestionTrigger/responses/ingestionTriggerResponses.yaml#/components/schemas/errorMessage
'500':
description: Internal Server Error
content:
application/json:
schema:
$ref: >-
./Schema/ingestionTrigger/responses/ingestionTriggerResponses.yaml#/components/schemas/errorMessage
/validate/gpkgs:
post:
operationId: validateGpkgs
tags:
- validate
summary: checks that all provided gpkgs files have valid raw data
requestBody:
description: A json object containing array of gpkg files paths
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/GpkgInputFiles'
example:
gpkgFilesPath:
- path/to/blue_marble.gpkg
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: >-
./Schema/ingestionTrigger/responses/ingestionTriggerResponses.yaml#/components/schemas/validateSourcesResponse
'400':
description: Bad Request
content:
application/json:
schema:
$ref: >-
./Schema/ingestionTrigger/responses/ingestionTriggerResponses.yaml#/components/schemas/errorMessage
'404':
description: Files not found
content:
application/json:
schema:
$ref: >-
./Schema/ingestionTrigger/responses/ingestionTriggerResponses.yaml#/components/schemas/errorMessage
'500':
description: Internal Server Error
content:
application/json:
schema:
$ref: >-
./Schema/ingestionTrigger/responses/ingestionTriggerResponses.yaml#/components/schemas/errorMessage
/info/gpkgs:
post:
operationId: getGpkgsInfo
tags:
- info
summary: returns the GDAL info for the provided gpkg files
requestBody:
description: A json object containing array of gpkg file paths
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/GpkgInputFiles'
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: >-
./Schema/ingestionTrigger/responses/ingestionTriggerResponses.yaml#/components/schemas/sourcesInfoResponse
'400':
description: Bad Request
content:
application/json:
schema:
$ref: >-
./Schema/ingestionTrigger/responses/ingestionTriggerResponses.yaml#/components/schemas/errorMessage
'404':
description: Files not found
content:
application/json:
schema:
$ref: >-
./Schema/ingestionTrigger/responses/ingestionTriggerResponses.yaml#/components/schemas/errorMessage
'422':
description: Unprocessable Content
content:
application/json:
schema:
$ref: >-
./Schema/ingestionTrigger/responses/ingestionTriggerResponses.yaml#/components/schemas/errorMessage
'500':
description: Internal Server Error
content:
application/json:
schema:
$ref: >-
./Schema/ingestionTrigger/responses/ingestionTriggerResponses.yaml#/components/schemas/errorMessage
components:
schemas:
BypassValidationErrorsRequest:
type: object
required:
- allowedValidationErrors
- approver
properties:
allowedValidationErrors:
type: array
items:
type: string
enum:
- resolution
description: list of validation errors to bypass
approver:
type: string
description: user trying to bypass the errors
CallbackUrls:
type: array
minItems: 1
items:
type: string
pattern: ^https?:\/\/[^\s/$.?#].[^\s]*$
description: callback url for ingestion status notifications
example:
- https://my-dns-for-callback
GpkgFilesPath:
type: array
minItems: 1
maxItems: 1
items:
type: string
pattern: ^(\/?[\w-]+)(\/[\w-]+)*\/[\wא-ת\.-]+\.gpkg$
description: gpkg source file paths
example:
- path/to/example.gpkg
IngestionNewLayerMetadata:
type: object
required:
- classification
- productId
- productName
- productType
- srs
- srsName
- transparency
- region
properties:
productId:
$ref: ./Schema/core/layerMetadata.yaml#/components/schemas/ProductId
productName:
$ref: ./Schema/core/layerMetadata.yaml#/components/schemas/ProductName
productType:
$ref: ./Schema/core/layerMetadata.yaml#/components/schemas/ProductType
productSubType:
$ref: ./Schema/core/layerMetadata.yaml#/components/schemas/ProductSubType
region:
$ref: ./Schema/core/layerMetadata.yaml#/components/schemas/Region
srs:
$ref: ./Schema/core/layerMetadata.yaml#/components/schemas/Srs
srsName:
$ref: ./Schema/core/layerMetadata.yaml#/components/schemas/SrsName
transparency:
$ref: ./Schema/core/layerMetadata.yaml#/components/schemas/Transparency
producerName:
$ref: ./Schema/core/layerMetadata.yaml#/components/schemas/ProducerName
scale:
$ref: ./Schema/core/layerMetadata.yaml#/components/schemas/Scale
description:
$ref: ./Schema/core/layerMetadata.yaml#/components/schemas/Description
classification:
$ref: ./Schema/core/layerMetadata.yaml#/components/schemas/Classification
IngestionNewLayerRequest:
type: object
required:
- metadata
- inputFiles
- ingestionResolution
properties:
metadata:
$ref: '#/components/schemas/IngestionNewLayerMetadata'
inputFiles:
$ref: '#/components/schemas/InputFiles'
ingestionResolution:
$ref: '#/components/schemas/IngestionResolution'
callbackUrls:
$ref: '#/components/schemas/CallbackUrls'
IngestionResolution:
type: number
format: double
minimum: 1.67638063430786e-7
maximum: 0.703125
description: requested ingestion resolution
IngestionUpdateLayerMetadata:
type: object
required:
- classification
properties:
classification:
$ref: ./Schema/core/layerMetadata.yaml#/components/schemas/Classification
IngestionUpdateLayerRequest:
type: object
required:
- metadata
- inputFiles
- ingestionResolution
properties:
metadata:
$ref: '#/components/schemas/IngestionUpdateLayerMetadata'
inputFiles:
$ref: '#/components/schemas/InputFiles'
ingestionResolution:
$ref: '#/components/schemas/IngestionResolution'
callbackUrls:
$ref: '#/components/schemas/CallbackUrls'
InputFiles:
type: object
required:
- gpkgFilesPath
- metadataShapefilePath
- productShapefilePath
properties:
gpkgFilesPath:
$ref: '#/components/schemas/GpkgFilesPath'
metadataShapefilePath:
$ref: '#/components/schemas/MetadataShapefilePath'
productShapefilePath:
$ref: '#/components/schemas/ProductShapefilePath'
GpkgInputFiles:
type: object
required:
- gpkgFilesPath
properties:
gpkgFilesPath:
$ref: '#/components/schemas/GpkgFilesPath'
MetadataShapefilePath:
type: string
pattern: ^(\/?[\w-]+)(\/[\w-]+)*\/ShapeMetadata\.shp$
description: metadata shape file path
example: path/to/ShapeMetadata.shp
ProductShapefilePath:
type: string
pattern: ^(\/?[\w-]+)(\/[\w-]+)*\/Product\.shp$
description: product shape file path
example: path/to/Product.shp
SuccessfulIngestionResponse:
type: object
required:
- jobId
- taskId
properties:
jobId:
type: string
format: uuid
taskId:
type: string
format: uuid