Skip to content

Commit

Permalink
Related topics
Browse files Browse the repository at this point in the history
  • Loading branch information
jasollien committed Aug 12, 2024
1 parent 5c60e51 commit ec4eaf5
Showing 1 changed file with 28 additions and 6 deletions.
34 changes: 28 additions & 6 deletions swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down

0 comments on commit ec4eaf5

Please sign in to comment.