Discord · Schema

OAuth2Key

ChatCommunicationGamingMessagingSocialVideoVoice

Properties

Name Type Description
kty string
use string
kid string
n string
e string
alg string
View JSON Schema on GitHub

JSON Schema

discord-oauth2key-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/OAuth2Key",
  "title": "OAuth2Key",
  "type": "object",
  "properties": {
    "kty": {
      "type": "string"
    },
    "use": {
      "type": "string"
    },
    "kid": {
      "type": "string"
    },
    "n": {
      "type": "string"
    },
    "e": {
      "type": "string"
    },
    "alg": {
      "type": "string"
    }
  },
  "required": [
    "kty",
    "use",
    "kid",
    "n",
    "e",
    "alg"
  ]
}