Discord · Schema

UserCommunicationDisabledActionResponse

ChatCommunicationGamingMessagingSocialVideoVoice

Properties

Name Type Description
type integer
metadata object
View JSON Schema on GitHub

JSON Schema

discord-usercommunicationdisabledactionresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UserCommunicationDisabledActionResponse",
  "title": "UserCommunicationDisabledActionResponse",
  "type": "object",
  "properties": {
    "type": {
      "type": "integer",
      "enum": [
        3
      ],
      "allOf": [
        {
          "$ref": "#/components/schemas/AutomodActionType"
        }
      ],
      "format": "int32"
    },
    "metadata": {
      "$ref": "#/components/schemas/UserCommunicationDisabledActionMetadataResponse"
    }
  },
  "required": [
    "type",
    "metadata"
  ]
}