Discord · Schema

RichEmbedAuthor

ChatCommunicationGamingMessagingSocialVideoVoice

Properties

Name Type Description
name stringnull
url stringnull
icon_url stringnull
View JSON Schema on GitHub

JSON Schema

discord-richembedauthor-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RichEmbedAuthor",
  "title": "RichEmbedAuthor",
  "type": "object",
  "properties": {
    "name": {
      "type": [
        "string",
        "null"
      ],
      "maxLength": 256
    },
    "url": {
      "type": [
        "string",
        "null"
      ],
      "maxLength": 2048,
      "format": "uri"
    },
    "icon_url": {
      "type": [
        "string",
        "null"
      ],
      "maxLength": 2048,
      "format": "uri"
    }
  }
}