Discord · Schema

RichEmbedField

ChatCommunicationGamingMessagingSocialVideoVoice

Properties

Name Type Description
name string
value string
inline booleannull
View JSON Schema on GitHub

JSON Schema

discord-richembedfield-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RichEmbedField",
  "title": "RichEmbedField",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "maxLength": 256
    },
    "value": {
      "type": "string",
      "maxLength": 1024
    },
    "inline": {
      "type": [
        "boolean",
        "null"
      ]
    }
  },
  "required": [
    "name",
    "value"
  ]
}