Discord · Schema

StartThreadRequest

ChatCommunicationGamingMessagingSocialVideoVoice

Properties

Name Type Description
name string
auto_archive_duration integer
type integer
invitable boolean
rate_limit_per_user integer
View JSON Schema on GitHub

JSON Schema

discord-startthreadrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StartThreadRequest",
  "title": "StartThreadRequest",
  "type": "object",
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "type": "string",
      "minLength": 1,
      "maxLength": 100
    },
    "auto_archive_duration": {
      "type": "integer"
    },
    "type": {
      "type": "integer"
    },
    "invitable": {
      "type": "boolean"
    },
    "rate_limit_per_user": {
      "type": "integer"
    }
  }
}