Files
NodeBB/public/openapi/read/world.yaml
Barış Soner Uşaklı 05dd46c31f test: fix spec, remove log
2026-02-09 18:23:29 -05:00

56 lines
1.8 KiB
YAML

get:
tags:
- topics
summary: Get external topics
description: Returns a list of external topics known to the local instance
parameters:
- name: filter
in: path
required: true
schema:
type: string
example: all
responses:
"200":
description: An array of topic objects sorted by timestamp.
content:
application/json:
schema:
allOf:
- $ref: ../components/schemas/CategoryObject.yaml#/CategoryObject
- type: object
properties:
tagWhitelist:
type: array
items:
type: string
posts:
$ref: ../components/schemas/PostsObject.yaml#/PostsObject
showThumbs:
type: boolean
showTopicTools:
type: boolean
showSelect:
type: boolean
isWatched:
type: boolean
isTracked:
type: boolean
isNotWatched:
type: boolean
isIgnored:
type: boolean
hasFollowers:
type: boolean
nullable: true
title:
type: string
topicCount:
type: number
categories:
type: array
items:
$ref: ../components/schemas/CategoryObject.yaml#/CategoryObject
- $ref: ../components/schemas/Pagination.yaml#/Pagination
- $ref: ../components/schemas/Breadcrumbs.yaml#/Breadcrumbs
- $ref: ../components/schemas/CommonProps.yaml#/CommonProps