Commit 3cc63e3f authored by ruiyue's avatar ruiyue
Browse files

Rel-20 CR TS 28.312 Enhancement of intent exploration

parent d24dad23
Loading
Loading
Loading
Loading
Loading
+29 −4
Original line number Diff line number Diff line
@@ -446,9 +446,8 @@ components:
          type: string
        observationPeriod:
          description: >-
            It indicates the time period for which the fulfilment process is observed
            and at the end of which the fulfilmentInfo for corresponding
            ExpectationTargets, IntentExpectations and Intent is updated.
            It indicates the time period for which the fulfilment process or exploration process is observed
            and at the end of which which the IntentFulfilmentReport or IntentExplorationReport is updated and reported.
          type: integer
        expectedReportTypes:
          description: >-
@@ -709,6 +708,15 @@ components:
            $ref: '#/components/schemas/ExpectationExplorationResult'
          uniqueItems: true
          minItems: 1
        expectationExplorationStatus:
          description: ->
            It describes the status of intent exploration process.
          type: string
          enum:  
            - NOT_STARTED
            - RUNNING
            - FINISHED
            - FAILED
    ExpectationExplorationResult:
      description: >-
        It represents the expectation exploration result for a specific intent expectation
@@ -720,7 +728,7 @@ components:
        targetExplorationResults:
          type: array
          items:
            $ref: '#/components/schemas/ExpectationTarget'
            $ref: '#/components/schemas/TargetExplorationResult'
          uniqueItems: true
          minItems: 1
        contextExplorationResults:
@@ -732,6 +740,23 @@ components:
      required:
        - expectationId
        - targetExplorationResults
    TargetExplorationResult:
      type: object
      description: >-
         It represents exploration results (i.e. recommended best values) for the expectation targets.
      properties:
        targetName: 
          type: string
        targetCondition:
          $ref: '#/components/schemas/Condition'
        targetValueRange:
          $ref: '#/components/schemas/ValueRangeType'
        cellContext:
          $ref: 'TS28312_IntentExpectations.yaml#/components/schemas/CellContext'
        coverageAreaPolygonContext:
          $ref: 'TS28312_IntentExpectations.yaml#/components/schemas/CoverageAreaPolygonContext'          
        

   #-------Definition of the generic IntentExplorationReport dataType----------------#