Commit 8916d73a authored by sunse's avatar sunse
Browse files

Rel19 CR0214 TS28.104 enhancement to stage 2 and stage 3 for clause 8

parent 3f3467cb
Loading
Loading
Loading
Loading
+30 −4
Original line number Diff line number Diff line
@@ -14,6 +14,30 @@ components:
  schemas:

#-------- Definition of types-----------------------------------------------------
    ProjectionDuration:
      type: object
      properties:
        fromTime:
          $ref: 'TS28623_ComDefs.yaml#/components/schemas/DateTime'
        toTime:
          $ref: 'TS28623_ComDefs.yaml#/components/schemas/DateTime'
    PagingOptimizationAnalysisOutput:
      type: object
      properties:
        oOCDuration:
          $ref: '#/components/schemas/ProjectionDuration'
        oOCLocation:
          type: array
          uniqueItems: true
          items:
            $ref: 'TS28623_ComDefs.yaml#/components/schemas/GeoCoordinate'
          minItems: 1
        oOCMap:
          type: array
          uniqueItems: true
          items:
            $ref: 'TS28623_ComDefs.yaml#/components/schemas/GeoArea'
          minItems: 1

    MDAOutputs:
      type: object
@@ -21,7 +45,9 @@ components:
        mDAType:
          $ref: 'TS28104_MdaNrm.yaml#/components/schemas/MDAType'
        mDAOutputList:
          type: array
          oneOf:
            - $ref: '#/components/schemas/PagingOptimizationAnalysisOutput'          
            - type: array
              uniqueItems: true
              items:
                $ref: '#/components/schemas/MDAOutputEntry'