Discord · Schema

GuildHomeSettingsResponse

ChatCommunicationGamingMessagingSocialVideoVoice

Properties

Name Type Description
guild_id object
enabled boolean
welcome_message object
new_member_actions arraynull
resource_channels arraynull
View JSON Schema on GitHub

JSON Schema

discord-guildhomesettingsresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GuildHomeSettingsResponse",
  "title": "GuildHomeSettingsResponse",
  "type": "object",
  "properties": {
    "guild_id": {
      "$ref": "#/components/schemas/SnowflakeType"
    },
    "enabled": {
      "type": "boolean"
    },
    "welcome_message": {
      "oneOf": [
        {
          "type": "null"
        },
        {
          "$ref": "#/components/schemas/WelcomeMessageResponse"
        }
      ]
    },
    "new_member_actions": {
      "type": [
        "array",
        "null"
      ],
      "items": {
        "oneOf": [
          {
            "type": "null"
          },
          {
            "$ref": "#/components/schemas/NewMemberActionResponse"
          }
        ]
      }
    },
    "resource_channels": {
      "type": [
        "array",
        "null"
      ],
      "items": {
        "oneOf": [
          {
            "type": "null"
          },
          {
            "$ref": "#/components/schemas/ResourceChannelResponse"
          }
        ]
      }
    }
  },
  "required": [
    "guild_id",
    "enabled"
  ]
}