Commit 54cd189b authored by ruiyue's avatar ruiyue
Browse files

Merge branch 'TS28.312_Rel19_CRXXXX_Add_solution_for_intent_exploration' into...

Merge branch 'TS28.312_Rel19_CRXXXX_Add_solution_for_intent_exploration' into 'Integration_Rel19_SA5_159_YAML'

TS28.312_Rel19_CR0290_Add_solution_for_intent_exploration

See merge request !1545
parents 01ef1477 657229dd
Loading
Loading
Loading
Loading
Loading
+43 −3
Original line number Diff line number Diff line
@@ -89,6 +89,8 @@ components:
              $ref: '#/components/schemas/IntentConflictReport'
          intentFeasibilityCheckReport:
            $ref: '#/components/schemas/IntentFeasibilityCheckReport'
          intentExplorationReport:
            $ref: '#/components/schemas/IntentExplorationReport'
          lastUpdatedTime:
            $ref: 'TS28623_ComDefs.yaml#/components/schemas/DateTimeRo'
          intentReference:
@@ -199,6 +201,7 @@ components:
      enum:
        - FEASIBILITYCHECK
        - FULFILMENT
        - EXPLORATION
      default: FULFILMENT
    FulfilmentStatus:
      type: string
@@ -543,6 +546,43 @@ components:
          description: It describes the list of TargetNames for the InFeasibleTargets
   #-------Definition of the concrete IntentFeasibilityCheckReport dataType----------------#


   #-------Definition of the generic IntentExplorationReport dataType----------------#
    IntentExplorationReport:
      description: >-
        It represents the intent exploration information
        This attribute shall be supported when intent exploration information is supported by IntentReport
      type: object
      properties:
        expectationExplorationResults:
          type: array
          items:
            $ref: '#/components/schemas/ExpectationExplorationResult'
            uniqueItems: true
            minItems: 1
    ExpectationExplorationResult:
      description: >-
        It represents the expectation exploration result for a specific intent expectation
      type: object
      properties:
        expectationId:
          type: string
          readOnly: true
        targetExplorationResults:
          type: array
          items:
            $ref: '#/components/schemas/ExpectationTarget'
            uniqueItems: true
            minItems: 1
        contextExplorationResults:
          type: array
          items:
            $ref: '#/components/schemas/Context'
            uniqueItems: true
            minItems: 1
   #-------Definition of the generic IntentExplorationReport dataType----------------#


   #-------Definition of the generic IntentHandlingCapability dataType----------------#
    IntentHandlingCapability:   
      description: >-