Discord · Schema

MessageEmbedFieldResponse

ChatCommunicationGamingMessagingSocialVideoVoice

Properties

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

JSON Schema

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