diff --git a/swagger.yaml b/swagger.yaml index f50596f..f212dc0 100644 --- a/swagger.yaml +++ b/swagger.yaml @@ -1379,15 +1379,37 @@ paths: content: application/json: schema: - type: array - items: - $ref: '#/components/schemas/related_topic_GET' + type: object + required: + skip + top + totalCount + data + properties: + skip: + type: integer + top: + type: integer + totalCount: + type: integer + nextLink: + type: string + data: + type: array + items: + $ref: "#/components/schemas/related_topic_GET" example: - [{ + { + "skip": 0, + "top": 1000, + "totalCount": 2, + "nextLink": null, + "data": [{ "related_topic_guid": "db49df2b-0e42-473b-a3ee-f7b785d783c4" - }, { + }, { "related_topic_guid": "6963a846-54d1-4050-954d-607cd5e48aa3" - }] + }] + } put: summary: Update Related Topics description: |