{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/InviteStageInstanceResponse", "title": "InviteStageInstanceResponse", "type": "object", "properties": { "topic": { "type": "string" }, "participant_count": { "type": [ "integer", "null" ], "format": "int32" }, "speaker_count": { "type": [ "integer", "null" ], "format": "int32" }, "members": { "type": [ "array", "null" ], "items": { "$ref": "#/components/schemas/GuildMemberResponse" } } }, "required": [ "topic" ] }