Discord · Schema

ThreadsResponse

ChatCommunicationGamingMessagingSocialVideoVoice

Properties

Name Type Description
threads array
members array
has_more booleannull
View JSON Schema on GitHub

JSON Schema

discord-threadsresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ThreadsResponse",
  "title": "ThreadsResponse",
  "type": "object",
  "properties": {
    "threads": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ThreadResponse"
      }
    },
    "members": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ThreadMemberResponse"
      }
    },
    "has_more": {
      "type": [
        "boolean",
        "null"
      ]
    }
  },
  "required": [
    "threads",
    "members"
  ]
}