Discord · Schema

ThreadMemberResponse

ChatCommunicationGamingMessagingSocialVideoVoice

Properties

Name Type Description
id object
user_id object
join_timestamp string
flags integer
member object
View JSON Schema on GitHub

JSON Schema

discord-threadmemberresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ThreadMemberResponse",
  "title": "ThreadMemberResponse",
  "type": "object",
  "properties": {
    "id": {
      "$ref": "#/components/schemas/SnowflakeType"
    },
    "user_id": {
      "$ref": "#/components/schemas/SnowflakeType"
    },
    "join_timestamp": {
      "type": "string",
      "format": "date-time"
    },
    "flags": {
      "type": "integer",
      "format": "int32"
    },
    "member": {
      "oneOf": [
        {
          "type": "null"
        },
        {
          "$ref": "#/components/schemas/GuildMemberResponse"
        }
      ]
    }
  },
  "required": [
    "id",
    "user_id",
    "join_timestamp",
    "flags"
  ]
}