{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ForumTagResponse", "title": "ForumTagResponse", "type": "object", "properties": { "id": { "$ref": "#/components/schemas/SnowflakeType" }, "name": { "type": "string" }, "moderated": { "type": "boolean" }, "emoji_id": { "oneOf": [ { "type": "null" }, { "$ref": "#/components/schemas/SnowflakeType" } ] }, "emoji_name": { "type": [ "string", "null" ] } }, "required": [ "id", "name", "moderated" ] }