Properties
| Name | Type | Description |
|---|---|---|
| id | object | |
| guild_id | object | |
| channel_id | object | |
| topic | string | |
| privacy_level | integer | |
| discoverable_disabled | boolean | |
| guild_scheduled_event_id | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/StageInstance",
"title": "StageInstance",
"type": "object",
"properties": {
"id": {
"$ref": "#/components/schemas/Snowflake"
},
"guild_id": {
"$ref": "#/components/schemas/Snowflake"
},
"channel_id": {
"$ref": "#/components/schemas/Snowflake"
},
"topic": {
"type": "string"
},
"privacy_level": {
"type": "integer"
},
"discoverable_disabled": {
"type": "boolean"
},
"guild_scheduled_event_id": {
"$ref": "#/components/schemas/Snowflake"
}
}
}