Commit 17ad3db2 authored by Walter Featherstone's avatar Walter Featherstone
Browse files

Changes proposed in bug 10 - SubscriptionLinkList should include an array of...


Changes proposed in bug 10 - SubscriptionLinkList should include an array of the attribute Subscription

Change-Id: I888613c50354aabc98314fbd0b18c35377b0d6ba
Signed-off-by: default avatarWalter Featherstone <walter.featherstone@viavisolutions.com>
parent 80c624be
Loading
Loading
Loading
Loading
+5 −17
Original line number Original line Diff line number Diff line
@@ -6025,12 +6025,15 @@
      ],
      ],
      "properties": {
      "properties": {
        "_links": {
        "_links": {
          "$ref": "#/definitions/LinkList"
          "$ref": "#/definitions/Link"
        },
        },
        "subscription": {
        "subscription": {
          "type": "array",
          "items": {
            "$ref": "#/definitions/Subscription"
            "$ref": "#/definitions/Subscription"
          }
          }
        }
        }
      }
    },
    },
    "MeasRepUeSubscriptionPost": {
    "MeasRepUeSubscriptionPost": {
      "type": "object",
      "type": "object",
@@ -6373,21 +6376,6 @@
      },
      },
      "description": "List of hyperlinks related to the resource"
      "description": "List of hyperlinks related to the resource"
    },
    },
    "LinkList": {
      "type": "object",
      "required": [
        "self"
      ],
      "properties": {
        "self": {
          "$ref": "#/definitions/LinkType"
        },
        "subscription": {
          "$ref": "#/definitions/Subscription"
        }
      },
      "description": "List of hyperlinks related to the resource"
    },
    "LinkType": {
    "LinkType": {
      "description": "URI referring to a resource",
      "description": "URI referring to a resource",
      "type": "string",
      "type": "string",
+4 −12
Original line number Original line Diff line number Diff line
@@ -4164,8 +4164,10 @@ definitions:
      - _links
      - _links
    properties:
    properties:
      _links:
      _links:
        $ref: '#/definitions/LinkList'
        $ref: '#/definitions/Link'
      subscription:
      subscription:
        type: array
        items:
          $ref: '#/definitions/Subscription'
          $ref: '#/definitions/Subscription'
  MeasRepUeSubscriptionPost:
  MeasRepUeSubscriptionPost:
    type: object
    type: object
@@ -4400,16 +4402,6 @@ definitions:
      self:
      self:
        $ref: '#/definitions/LinkType'
        $ref: '#/definitions/LinkType'
    description: List of hyperlinks related to the resource
    description: List of hyperlinks related to the resource
  LinkList:
    type: object
    required:
      - self
    properties:
      self:
        $ref: '#/definitions/LinkType'
      subscription:
        $ref: '#/definitions/Subscription'
    description: List of hyperlinks related to the resource
  LinkType:
  LinkType:
    description: URI referring to a resource
    description: URI referring to a resource
    type: string
    type: string