Commit 07da81a6 authored by daniel-gonzalez-sanchez's avatar daniel-gonzalez-sanchez
Browse files

Updating Subscription.Common schema, including the localOnly and datasetId...

Updating Subscription.Common schema, including the localOnly and datasetId properties and updating the description of the entities property.
parent ff802fc1
Loading
Loading
Loading
Loading
+18 −1
Original line number Diff line number Diff line
@@ -5200,10 +5200,17 @@ components:
        entities:
          description: |
            Entities subscribed. 
            Mandatory if timeInterval is present, unless the execution of the request 
            is limited to local scope (see clause 5.5.13).
          type: array
          items:
            $ref: '#/components/schemas/EntitySelector'
          minItems: 1
        localOnly:
          description: |
            If localOnly=true then the subscription only pertains to the Entities 
            stored locally (see clause 5.5.13).
          type: boolean
        notificationTrigger:
          description: |
            The notification triggers listed indicate what kind of changes shall trigger a notification.
@@ -5280,6 +5287,16 @@ components:
            @context used for the subscription shall be used as a default.
          type: string
          format: uri
        datasetId:
          description: |
            Specifies the datasetIds of the Attribute instances to be selected for each 
            matched Attribute as per clause 4.5.5. Valid URIs, "@none" for including the 
            default Attribute instances.
          type: array
          items:
            type: string
            format: uri
            default: "@none"
    Subscription.Periodic:
      allOf:
        - $ref: '#/components/schemas/Subscription.Common'