Discord · Schema

Connection

ChatCommunicationGamingMessagingSocialVideoVoice

Properties

Name Type Description
id string
name string
type string
revoked boolean
verified boolean
friend_sync boolean
show_activity boolean
two_way_link boolean
visibility integer 0=None, 1=Everyone
View JSON Schema on GitHub

JSON Schema

discord-connection-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Connection",
  "title": "Connection",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "type": {
      "type": "string"
    },
    "revoked": {
      "type": "boolean"
    },
    "verified": {
      "type": "boolean"
    },
    "friend_sync": {
      "type": "boolean"
    },
    "show_activity": {
      "type": "boolean"
    },
    "two_way_link": {
      "type": "boolean"
    },
    "visibility": {
      "type": "integer",
      "description": "0=None, 1=Everyone"
    }
  }
}