Discord · Schema

MessageEmbedAuthorResponse

ChatCommunicationGamingMessagingSocialVideoVoice

Properties

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

JSON Schema

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