bbox-processes-server 0.6.0-beta1

BBOX OGC API Processes Service
Documentation
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
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
openapi: 3.0.3
info:
  title: 'OGC API - Processes - Part 1: Core'
  version: 1.0.0
  description: |-
    The OGC API - Processes
    Standard specifies a processing interface to communicate over a
    RESTful protocol using JavaScript Object Notation (JSON) encodings.
    The specification allows for the wrapping of computational tasks into
    executable processes that can be offered by a server and be invoked
    by a client application.
    OpenAPI definition that conforms to the
    conformance classes "Core", "GeoJSON", "HTML" and "OpenAPI 3.0" of
    the standard "OGC API - Features - Part 1: Core".
  contact:
    name: Open Geospatial Consortium (OGC)
    email: standards-team@ogc.org
    url: 'https://www.ogc.org/contacts'
  license:
    name: OGC license
    url: 'http://www.ogc.org/legal/'
paths:
  # /:
  #   get:
  #     summary: landing page of this API
  #     description: |-
  #       The landing page provides links to the:
  #         * The APIDefinition (no fixed path),
  #         * The Conformance statements (path /conformance),
  #         * The processes metadata (path /processes),
  #         * The endpoint for job monitoring (path /jobs).

  #       For more information, see [Section 7.2](https://docs.ogc.org/is/18-062/18-062.html#sc_landing_page).
  #     operationId: getLandingPage
  #     tags:
  #       - Capabilities
  #     responses:
  #       '200':
  #         $ref: '#/components/responses/LandingPage'
  #       '500':
  #         $ref: '#/components/responses/ServerError'
  # /conformance:
  #   get:
  #     summary: information about standards that this API conforms to
  #     description: |
  #       A list of all conformance classes, specified in a standard, that the server conforms to.

  #       | Conformance class | URI |
  #       |-----------|-------|
  #       |Core|http://www.opengis.net/spec/ogcapi-processes-1/1.0/conf/core|
  #       |OGC Process Description|http://www.opengis.net/spec/ogcapi-processes-1/1.0/conf/ogc-process-description|
  #       |JSON|http://www.opengis.net/spec/ogcapi-processes-1/1.0/conf/json|
  #       |HTML|http://www.opengis.net/spec/ogcapi-processes-1/1.0/conf/html|
  #       |OpenAPI Specification 3.0|http://www.opengis.net/spec/ogcapi-processes-1/1.0/conf/oas30|
  #       |Job list|http://www.opengis.net/spec/ogcapi-processes-1/1.0/conf/job-list|
  #       |Callback|http://www.opengis.net/spec/ogcapi-processes-1/1.0/conf/callback|
  #       |Dismiss|http://www.opengis.net/spec/ogcapi-processes-1/1.0/conf/dismiss|

  #       For more information, see [Section 7.4](https://docs.ogc.org/is/18-062/18-062.html#sc_conformance_classes).
  #     operationId: getConformanceClasses
  #     tags:
  #       - ConformanceDeclaration
  #     responses:
  #       '200':
  #         $ref: '#/components/responses/ConformanceDeclaration'
  #       '500':
  #         $ref: '#/components/responses/ServerError'
  /processes:
    get:
      summary: retrieve the list of available processes
      description: |
        The list of processes contains a summary of each process the OGC API - Processes offers, including the link to a more detailed description of the process.

        For more information, see [Section 7.9](https://docs.ogc.org/is/18-062/18-062.html#sc_process_list).
      operationId: getProcesses
      tags:
        - Processes
      responses:
        '200':
          $ref: '#/components/responses/ProcessList'
  '/processes/{processID}':
    get:
      summary: retrieve a process description
      description: |
        The process description contains information about inputs and outputs and a link to the execution-endpoint for the process. The Core does not mandate the use of a specific process description to specify the interface of a process. That said, the Core requirements class makes the following recommendation:

        Implementations SHOULD consider supporting the OGC process description.

        For more information, see [Section 7.10](https://docs.ogc.org/is/18-062/18-062.html#sc_process_description).
      operationId: getProcessDescription
      tags:
        - Processes
      parameters:
        - $ref: '#/components/parameters/processIdPathParam'
      responses:
        '200':
          $ref: '#/components/responses/ProcessDescription'
        '404':
          $ref: '#/components/responses/NotFound'
  /jobs:
    get:
      summary: retrieve the list of jobs.
      description: |
        Lists available jobs.

        For more information, see [Section 11](https://docs.ogc.org/is/18-062/18-062.html#sc_job_list).
      operationId: getJobs
      tags:
        - Processes
      responses:
        '200':
          $ref: '#/components/responses/JobList'
        '404':
          $ref: '#/components/responses/NotFound'
  '/processes/{processID}/execution':
    post:
      summary: execute a process.
      description: |
        Create a new job.

        For more information, see [Section 7.11](https://docs.ogc.org/is/18-062/18-062.html#sc_create_job).
      operationId: execute
      tags:
        - Processes
      parameters:
        - $ref: '#/components/parameters/processIdPathParam'
      requestBody:
        description: Mandatory execute request JSON
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/execute'
      responses:
        '200':
          $ref: '#/components/responses/ExecuteSync'
        '201':
          $ref: '#/components/responses/ExecuteAsync'
        '404':
          $ref: '#/components/responses/NotFound'
        '500':
          $ref: '#/components/responses/ServerError'
      callbacks:
        jobCompleted:
          '{$request.body#/subscriber/successUri}':
            post:
              requestBody:
                content:
                  application/json:
                    schema:
                      $ref: '#/components/schemas/results'
              responses:
                '200':
                  description: Results received successfully
  '/jobs/{jobId}':
    get:
      summary: retrieve the status of a job
      description: |
        Shows the status of a job.

         For more information, see [Section 7.12](https://docs.ogc.org/is/18-062/18-062.html#sc_retrieve_status_info).
      operationId: getStatus
      tags:
        - Processes
      parameters:
        - $ref: '#/components/parameters/jobId'
      responses:
        '200':
          $ref: '#/components/responses/Status'
        '404':
          $ref: '#/components/responses/NotFound'
        '500':
          $ref: '#/components/responses/ServerError'
    delete:
      summary: 'cancel a job execution, remove a finished job'
      description: |
        Cancel a job execution and remove it from the jobs list.

        For more information, see [Section 13](https://docs.ogc.org/is/18-062/18-062.html#Dismiss).
      operationId: dismiss
      tags:
        - Processes
      parameters:
        - $ref: '#/components/parameters/jobId'
      responses:
        '200':
          $ref: '#/components/responses/Status'
        '404':
          $ref: '#/components/responses/NotFound'
        '500':
          $ref: '#/components/responses/ServerError'
  '/jobs/{jobId}/results':
    get:
      summary: retrieve the result(s) of a job
      description: |
        Lists available results of a job. In case of a failure, lists exceptions instead.

        For more information, see [Section 7.13](https://docs.ogc.org/is/18-062/18-062.html#sc_retrieve_job_results).
      operationId: getResult
      tags:
        - Processes
      parameters:
        - $ref: '#/components/parameters/jobId'
      responses:
        '200':
          $ref: '#/components/responses/Results'
        '404':
          $ref: '#/components/responses/NotFound'
        '500':
          $ref: '#/components/responses/ServerError'
servers:
  - description: Example server
    url: 'http://example.org/ogcapi'
components:
  responses:
    Status:
      description: The status of a job.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/statusInfo'
    NotFound:
      description: The requested URI was not found.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/exception'
        text/html:
          schema:
            type: string
    Results:
      description: The results of a job.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/results'
    JobList:
      description: A list of jobs for this process.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/jobList'
    LandingPage:
      description: |-
        The landing page provides links to the API definition
        (link relations `service-desc` and `service-doc`),
        the Conformance declaration (path `/conformance`,
        link relation `http://www.opengis.net/def/rel/ogc/1.0/conformance`), and to other resources.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/landingPage'
        text/html:
          schema:
            type: string
    NotAllowed:
      description: The method is not allowed at the path.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/exception'
        text/html:
          schema:
            type: string
    ServerError:
      description: A server error occurred.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/exception'
        text/html:
          schema:
            type: string
    ProcessList:
      description: Information about the available processes
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/processList'
    ExecuteSync:
      description: Result of synchronous execution
      content:
        /*:
          schema:
            oneOf:
              - type: string
              - type: number
              - type: integer
              - type: object
                nullable: true
              - type: array
              - type: boolean
              - type: string
                format: binary
              - $ref: '#/components/schemas/results'
                description: 'Negotiate synchronous execution, response=document,any txMode and no. outputs'
    NotSupported:
      description: None of the requested media types is supported at the path.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/exception'
        text/html:
          schema:
            type: string
    ExecuteSyncRawRef:
      description: 'Response when negotiate synchronous execution, response=raw, transmissionMode=reference and for any number of output values.'
      headers:
        Link:
          schema:
            type: string
          description: One or more Link headers pointing to each raw output.
    ExecuteAsync:
      description: Started asynchronous execution. Created job.
      headers:
        Location:
          schema:
            type: string
          description: URL to check the status of the execution/job.
        Preference-Applied:
          schema:
            type: string
          description: The preference applied to execute the process asynchronously (see. RFC 2740).
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/statusInfo'
    swagger:
      ProcessDescription:
        description: A process description.
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/swagger/process'
            examples:
              processDecription:
                summary: A Process Description example
                externalValue: ../../../examples/json/ProcessDescription.json
    InvalidParameter:
      description: A query parameter has an invalid value.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/exception'
        text/html:
          schema:
            type: string
    ProcessDescription:
      description: A process description.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/process'
          examples:
            processDecription:
              summary: A Process Description example
              externalValue: ../../examples/json/ProcessDescription.json
    ConformanceDeclaration:
      description: |-
        The URIs of all conformance classes supported by the server.

        To support "generic" clients that want to access multiple
        OGC API - Processes implementations - and not "just" a specific
        API / server, the server declares the conformance
        classes it implements and conforms to.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/confClasses'
          example:
            conformsTo:
              - 'http://www.opengis.net/spec/ogcapi-processes/1.0/conf/core'
        text/html:
          schema:
            type: string
  schemas:
    bbox:
      type: object
      required:
        - bbox
      properties:
        bbox:
          type: array
          oneOf:
            - minItems: 4
              maxItems: 4
            - minItems: 6
              maxItems: 6
          items:
            type: number
        crs:
          type: string
          format: uri
          default: 'http://www.opengis.net/def/crs/OGC/1.3/CRS84'
          enum:
            - 'http://www.opengis.net/def/crs/OGC/1.3/CRS84'
            - 'http://www.opengis.net/def/crs/OGC/0/CRS84h'
    confClasses:
      type: object
      required:
        - conformsTo
      properties:
        conformsTo:
          type: array
          items:
            type: string
            example: 'http://www.opengis.net/spec/ogcapi-processes-1/1.0/conf/core'
    statusCode:
      type: string
      nullable: false
      enum:
        - accepted
        - running
        - successful
        - failed
        - dismissed
    inlineOrRefData:
      oneOf:
        - $ref: '#/components/schemas/inputValueNoObject'
        - $ref: '#/components/schemas/qualifiedInputValue'
        - $ref: '#/components/schemas/link'
    schema:
      oneOf:
        - $ref: '#/components/schemas/reference'
        - type: object
          properties:
            title:
              type: string
            multipleOf:
              type: number
              minimum: 0
              exclusiveMinimum: true
            maximum:
              type: number
            exclusiveMaximum:
              type: boolean
              default: false
            minimum:
              type: number
            exclusiveMinimum:
              type: boolean
              default: false
            maxLength:
              type: integer
              minimum: 0
            minLength:
              type: integer
              minimum: 0
              default: 0
            pattern:
              type: string
              format: regex
            maxItems:
              type: integer
              minimum: 0
            minItems:
              type: integer
              minimum: 0
              default: 0
            uniqueItems:
              type: boolean
              default: false
            maxProperties:
              type: integer
              minimum: 0
            minProperties:
              type: integer
              minimum: 0
              default: 0
            required:
              type: array
              items:
                type: string
              minItems: 1
              uniqueItems: true
            enum:
              type: array
              items: {}
              minItems: 1
              uniqueItems: false
            type:
              type: string
              enum:
                - array
                - boolean
                - integer
                - number
                - object
                - string
            not:
              oneOf:
                - $ref: '#/components/schemas/schema'
                - $ref: '#/components/schemas/reference'
            allOf:
              type: array
              items:
                oneOf:
                  - $ref: '#/components/schemas/schema'
                  - $ref: '#/components/schemas/reference'
            oneOf:
              type: array
              items:
                oneOf:
                  - $ref: '#/components/schemas/schema'
                  - $ref: '#/components/schemas/reference'
            anyOf:
              type: array
              items:
                oneOf:
                  - $ref: '#/components/schemas/schema'
                  - $ref: '#/components/schemas/reference'
            items:
              oneOf:
                - $ref: '#/components/schemas/schema'
                - $ref: '#/components/schemas/reference'
            properties:
              type: object
              additionalProperties:
                oneOf:
                  - $ref: '#/components/schemas/schema'
                  - $ref: '#/components/schemas/reference'
            additionalProperties:
              oneOf:
                - $ref: '#/components/schemas/schema'
                - $ref: '#/components/schemas/reference'
                - type: boolean
              default: true
            description:
              type: string
            format:
              type: string
            default: {}
            nullable:
              type: boolean
              default: false
            readOnly:
              type: boolean
              default: false
            writeOnly:
              type: boolean
              default: false
            example: {}
            deprecated:
              type: boolean
              default: false
            contentMediaType:
              type: string
            contentEncoding:
              type: string
            contentSchema:
              type: string
          additionalProperties: false
    binaryInputValue:
      type: string
      format: byte
    outputDescription:
      allOf:
        - $ref: '#/components/schemas/descriptionType'
        - type: object
          required:
            - schema
          properties:
            schema:
              $ref: '#/components/schemas/schema'
    jobList:
      type: object
      required:
        - jobs
        - links
      properties:
        jobs:
          type: array
          items:
            $ref: '#/components/schemas/statusInfo'
        links:
          type: array
          items:
            $ref: '#/components/schemas/link'
    descriptionType:
      type: object
      properties:
        title:
          type: string
        description:
          type: string
        keywords:
          type: array
          items:
            type: string
        metadata:
          type: array
          items:
            $ref: '#/components/schemas/metadata'
        additionalParameters:
          allOf:
            - $ref: '#/components/schemas/metadata'
            - type: object
              properties:
                parameters:
                  type: array
                  items:
                    $ref: '#/components/schemas/additionalParameter'
    inputValue:
      oneOf:
        - $ref: '#/components/schemas/inputValueNoObject'
        - type: object
    jobControlOptions:
      type: string
      enum:
        - sync-execute
        - async-execute
        - dismiss
    reference:
      type: object
      required:
        - $ref
      properties:
        $ref:
          type: string
          format: uri-reference
    metadata:
      type: object
      properties:
        title:
          type: string
        role:
          type: string
        href:
          type: string
    processList:
      type: object
      required:
        - processes
        - links
      properties:
        processes:
          type: array
          items:
            $ref: '#/components/schemas/processSummary'
        links:
          type: array
          items:
            $ref: '#/components/schemas/link'
    link:
      type: object
      required:
        - href
      properties:
        href:
          type: string
        rel:
          type: string
          example: service
        type:
          type: string
          example: application/json
        hreflang:
          type: string
          example: en
        title:
          type: string
    qualifiedInputValue:
      allOf:
        - $ref: '#/components/schemas/format'
        - type: object
          required:
            - value
          properties:
            value:
              $ref: '#/components/schemas/inputValue'
    transmissionMode:
      type: string
      enum:
        - value
        - reference
      default:
        - value
    inputDescription:
      allOf:
        - $ref: '#/components/schemas/descriptionType'
        - type: object
          required:
            - schema
          properties:
            minOccurs:
              type: integer
              default: 1
            maxOccurs:
              oneOf:
                - type: integer
                  default: 1
                - type: string
                  enum:
                    - unbounded
            schema:
              $ref: '#/components/schemas/schema'
    execute:
      type: object
      properties:
        inputs:
          additionalProperties:
            oneOf:
              - $ref: '#/components/schemas/inlineOrRefData'
              - type: array
                items:
                  $ref: '#/components/schemas/inlineOrRefData'
        outputs:
          additionalProperties:
            $ref: '#/components/schemas/output'
        response:
          type: string
          enum:
            - raw
            - document
          default:
            - raw
        subscriber:
          $ref: '#/components/schemas/subscriber'
    format:
      type: object
      properties:
        mediaType:
          type: string
        encoding:
          type: string
        schema:
          oneOf:
            - type: string
              format: url
            - type: object
    processSummary:
      allOf:
        - $ref: '#/components/schemas/descriptionType'
        - type: object
          required:
            - id
            - version
          properties:
            id:
              type: string
            version:
              type: string
            jobControlOptions:
              type: array
              items:
                $ref: '#/components/schemas/jobControlOptions'
            outputTransmission:
              type: array
              items:
                $ref: '#/components/schemas/transmissionMode'
            links:
              type: array
              items:
                $ref: '#/components/schemas/link'
    inputValueNoObject:
      oneOf:
        - type: string
        - type: number
        - type: integer
        - type: boolean
        - type: array
        - $ref: '#/components/schemas/binaryInputValue'
        - $ref: '#/components/schemas/bbox'
    statusInfo:
      type: object
      required:
        - jobID
        - status
        - type
      properties:
        processID:
          type: string
        type:
          type: string
          enum:
            - process
        jobID:
          type: string
        status:
          $ref: '#/components/schemas/statusCode'
        message:
          type: string
        created:
          type: string
          format: date-time
        started:
          type: string
          format: date-time
        finished:
          type: string
          format: date-time
        updated:
          type: string
          format: date-time
        progress:
          type: integer
          minimum: 0
          maximum: 100
        links:
          type: array
          items:
            $ref: '#/components/schemas/link'
    results:
      additionalProperties:
        $ref: '#/components/schemas/inlineOrRefData'
    landingPage:
      type: object
      required:
        - links
      properties:
        title:
          type: string
          example: Example processing server
        description:
          type: string
          example: Example server implementing the OGC API - Processes 1.0 Standard
        links:
          type: array
          items:
            $ref: '#/components/schemas/link'
    exception:
      title: Exception Schema
      description: JSON schema for exceptions based on RFC 7807
      type: object
      required:
        - type
      properties:
        type:
          type: string
        title:
          type: string
        status:
          type: integer
        detail:
          type: string
        instance:
          type: string
      additionalProperties: true
    subscriber:
      description: |-
        Optional URIs for callbacks for this job.

        Support for this parameter is not required and the parameter may be
        removed from the API definition, if conformance class **'callback'**
        is not listed in the conformance declaration under `/conformance`.
      type: object
      required:
        - successUrl
      properties:
        successUri:
          type: string
          format: uri
        inProgressUri:
          type: string
          format: uri
        failedUri:
          type: string
          format: uri
    swagger:
      schema:
        oneOf:
          - $ref: '#/components/schemas/reference'
          - type: object
            properties:
              title:
                type: string
              multipleOf:
                type: number
                minimum: 0
                exclusiveMinimum: true
              maximum:
                type: number
              exclusiveMaximum:
                type: boolean
                default: false
              minimum:
                type: number
              exclusiveMinimum:
                type: boolean
                default: false
              maxLength:
                type: integer
                minimum: 0
              minLength:
                type: integer
                minimum: 0
                default: 0
              pattern:
                type: string
                format: regex
              maxItems:
                type: integer
                minimum: 0
              minItems:
                type: integer
                minimum: 0
                default: 0
              uniqueItems:
                type: boolean
                default: false
              maxProperties:
                type: integer
                minimum: 0
              minProperties:
                type: integer
                minimum: 0
                default: 0
              required:
                type: array
                items:
                  type: string
                minItems: 1
                uniqueItems: true
              enum:
                type: array
                items: {}
                minItems: 1
                uniqueItems: false
              type:
                type: string
                enum:
                  - array
                  - boolean
                  - integer
                  - number
                  - object
                  - string
              properties:
                type: object
                additionalProperties:
                  type: boolean
                  default: true
              additionalProperties:
                type: boolean
                default: true
              description:
                type: string
              format:
                type: string
              default: {}
              nullable:
                type: boolean
                default: false
              readOnly:
                type: boolean
                default: false
              writeOnly:
                type: boolean
                default: false
              example: {}
              deprecated:
                type: boolean
                default: false
              contentMediaType:
                type: string
              contentEncoding:
                type: string
              contentSchema:
                type: string
            additionalProperties: false
      outputDescription:
        allOf:
          - $ref: '#/components/schemas/descriptionType'
          - type: object
            required:
              - schema
            properties:
              schema:
                $ref: '#/components/schemas/schema'
      inputDescription:
        allOf:
          - $ref: '#/components/schemas/descriptionType'
          - type: object
            required:
              - schema
            properties:
              minOccurs:
                type: integer
                default: 1
              maxOccurs:
                oneOf:
                  - type: integer
                    default: 1
                  - type: string
                    enum:
                      - unbounded
              schema:
                $ref: '#/components/schemas/schema'
      process:
        allOf:
          - $ref: '#/components/schemas/processSummary'
          - type: object
            properties:
              inputs:
                additionalProperties:
                  $ref: '#/components/schemas/inputDescription'
              outputs:
                additionalProperties:
                  $ref: '#/components/schemas/outputDescription'
    process:
      allOf:
        - $ref: '#/components/schemas/processSummary'
        - type: object
          properties:
            inputs:
              additionalProperties:
                $ref: '#/components/schemas/inputDescription'
            outputs:
              additionalProperties:
                $ref: '#/components/schemas/outputDescription'
    output:
      type: object
      properties:
        format:
          $ref: '#/components/schemas/format'
        transmissionMode:
          $ref: '#/components/schemas/transmissionMode'
    additionalParameter:
      type: object
      required:
        - name
        - value
      properties:
        name:
          type: string
        value:
          type: array
          items:
            oneOf:
              - type: string
              - type: number
              - type: integer
              - type: array
                items: {}
              - type: object
  parameters:
    type:
      name: type
      in: query
      required: false
      schema:
        type: array
        items:
          type: string
          enum:
            - process
    jobId:
      name: jobId
      in: path
      description: local identifier of a job
      required: true
      schema:
        type: string
    maxDuration:
      name: maxDuration
      in: query
      required: false
      schema:
        type: array
        items:
          type: integer
    datetime:
      name: datetime
      in: query
      required: false
      schema:
        type: string
    limit:
      name: limit
      in: query
      required: false
      schema:
        type: integer
        minimum: 1
        maximum: 1000
        default: 10
    minDuration:
      name: minDuration
      in: query
      required: false
      schema:
        type: array
        items:
          type: integer
    status:
      name: status
      in: query
      required: false
      schema:
        type: array
        items:
          $ref: '#/components/schemas/statusCode'
    processIdPathParam:
      name: processID
      in: path
      required: true
      schema:
        type: string
    processIdQueryParam:
      name: processID
      in: query
      required: false
      schema:
        type: array
        items:
          type: string