Discord · Schema

MessageComponentMentionableSelectResponse

ChatCommunicationGamingMessagingSocialVideoVoice

Properties

Name Type Description
type integer
id object
custom_id string
placeholder stringnull
min_values integernull
max_values integernull
disabled booleannull
View JSON Schema on GitHub

JSON Schema

discord-messagecomponentmentionableselectresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MessageComponentMentionableSelectResponse",
  "title": "MessageComponentMentionableSelectResponse",
  "type": "object",
  "properties": {
    "type": {
      "type": "integer",
      "enum": [
        7
      ],
      "allOf": [
        {
          "$ref": "#/components/schemas/MessageComponentTypes"
        }
      ],
      "format": "int32"
    },
    "id": {
      "$ref": "#/components/schemas/SnowflakeType"
    },
    "custom_id": {
      "type": "string"
    },
    "placeholder": {
      "type": [
        "string",
        "null"
      ]
    },
    "min_values": {
      "type": [
        "integer",
        "null"
      ],
      "format": "int32"
    },
    "max_values": {
      "type": [
        "integer",
        "null"
      ],
      "format": "int32"
    },
    "disabled": {
      "type": [
        "boolean",
        "null"
      ]
    }
  },
  "required": [
    "type",
    "id",
    "custom_id"
  ]
}