Properties
| Name | Type | Description |
|---|---|---|
| content | stringnull | |
| embeds | arraynull | |
| allowed_mentions | object | |
| components | arraynull | |
| attachments | arraynull | |
| tts | booleannull | |
| flags | integernull | |
| username | stringnull | |
| avatar_url | stringnull | |
| thread_name | stringnull | |
| applied_tags | arraynull |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/IncomingWebhookRequestPartial",
"title": "IncomingWebhookRequestPartial",
"type": "object",
"properties": {
"content": {
"type": [
"string",
"null"
],
"maxLength": 2000
},
"embeds": {
"type": [
"array",
"null"
],
"items": {
"$ref": "#/components/schemas/RichEmbed"
},
"maxItems": 10
},
"allowed_mentions": {
"oneOf": [
{
"type": "null"
},
{
"$ref": "#/components/schemas/MessageAllowedMentionsRequest"
}
]
},
"components": {
"type": [
"array",
"null"
],
"items": {
"$ref": "#/components/schemas/ActionRow"
},
"maxItems": 5
},
"attachments": {
"type": [
"array",
"null"
],
"items": {
"$ref": "#/components/schemas/MessageAttachmentRequest"
},
"maxItems": 10
},
"tts": {
"type": [
"boolean",
"null"
]
},
"flags": {
"type": [
"integer",
"null"
]
},
"username": {
"type": [
"string",
"null"
],
"minLength": 1,
"maxLength": 80
},
"avatar_url": {
"type": [
"string",
"null"
],
"maxLength": 2048,
"format": "uri"
},
"thread_name": {
"type": [
"string",
"null"
],
"minLength": 0,
"maxLength": 100
},
"applied_tags": {
"type": [
"array",
"null"
],
"items": {
"$ref": "#/components/schemas/SnowflakeType"
},
"maxItems": 5
}
}
}