Discord · Schema

InviteStageInstanceResponse

ChatCommunicationGamingMessagingSocialVideoVoice

Properties

Name Type Description
topic string
participant_count integernull
speaker_count integernull
members arraynull
View JSON Schema on GitHub

JSON Schema

discord-invitestageinstanceresponse-schema.json Raw ↑
{
  "$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"
  ]
}