summary refs log tree commit diff
path: root/assets/openapi.json
diff options
context:
space:
mode:
Diffstat (limited to 'assets/openapi.json')
-rw-r--r--assets/openapi.json46
1 files changed, 45 insertions, 1 deletions
diff --git a/assets/openapi.json b/assets/openapi.json

index c1df0643..3145285a 100644 --- a/assets/openapi.json +++ b/assets/openapi.json
@@ -7267,6 +7267,50 @@ "video_ssrc" ] }, + "EmojisResponse": { + "type": "array", + "items": { + "$ref": "#/components/schemas/EmojiResponse" + } + }, + "EmojiResponse": { + "type": "object", + "properties": { + "id": { + "type": "string", + "nullable": true + }, + "name": { + "type": "string", + "nullable": true + }, + "roles": { + "type": "array", + "items": { + "type": "string" + } + }, + "user": { + "$ref": "#/components/schemas/PartialUser" + }, + "require_colons": { + "type": "boolean" + }, + "managed": { + "type": "boolean" + }, + "animated": { + "type": "boolean" + }, + "available": { + "type": "boolean" + } + }, + "required": [ + "id", + "name" + ] + }, "CreateReportSchema": { "type": "object", "properties": { @@ -21643,7 +21687,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/APIEmojiArray" + "$ref": "#/components/schemas/EmojisResponse" } } }