Discord · Schema

MessageAttachmentRequest

ChatCommunicationGamingMessagingSocialVideoVoice

Properties

Name Type Description
id object
filename stringnull
description stringnull
is_remix booleannull
View JSON Schema on GitHub

JSON Schema

discord-messageattachmentrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MessageAttachmentRequest",
  "title": "MessageAttachmentRequest",
  "type": "object",
  "properties": {
    "id": {
      "$ref": "#/components/schemas/SnowflakeType"
    },
    "filename": {
      "type": [
        "string",
        "null"
      ],
      "maxLength": 1024
    },
    "description": {
      "type": [
        "string",
        "null"
      ],
      "maxLength": 1024
    },
    "is_remix": {
      "type": [
        "boolean",
        "null"
      ]
    }
  },
  "required": [
    "id"
  ]
}