mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-03-05 12:01:17 +01:00
36 lines
1.3 KiB
YAML
36 lines
1.3 KiB
YAML
get:
|
|
tags:
|
|
- admin
|
|
summary: Get detailed topic creation analytics
|
|
responses:
|
|
"200":
|
|
description: A JSON object containing more detailed analytics related to topic creations.
|
|
content:
|
|
application/json:
|
|
schema:
|
|
allOf:
|
|
- type: object
|
|
properties:
|
|
graphTitle:
|
|
type: string
|
|
set:
|
|
type: string
|
|
description: The analytics set that is being queried
|
|
query:
|
|
additionalProperties:
|
|
description: An object containing the query string parameters, if any
|
|
summary:
|
|
type: object
|
|
properties:
|
|
day:
|
|
type: number
|
|
week:
|
|
type: number
|
|
month:
|
|
type: number
|
|
topics:
|
|
type: array
|
|
items:
|
|
$ref: ../../../components/schemas/TopicObject.yaml#/TopicObject
|
|
- $ref: ../../../components/schemas/admin/dashboard.yaml#/Stats
|
|
- $ref: ../../../components/schemas/CommonProps.yaml#/CommonProps |