Mojang · Schema

PublicKeys

Mojang public keys for verifying signatures.

Games And ComicsMinecraftGamingIdentityPlayer ProfilesSessionPublic APIs

Properties

Name Type Description
profilePropertyKeys array Keys used to verify session-profile property signatures.
playerCertificateKeys array Keys used to verify player chat-signature certificates.
authenticationKeys array Keys used to verify Mojang authentication tokens.
View JSON Schema on GitHub

JSON Schema

minecraft-services-public-keys-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/mojang/refs/heads/main/json-schema/minecraft-services-public-keys-schema.json",
  "title": "PublicKeys",
  "description": "Mojang public keys for verifying signatures.",
  "type": "object",
  "properties": {
    "profilePropertyKeys": {
      "type": "array",
      "description": "Keys used to verify session-profile property signatures.",
      "items": {
        "$ref": "#/components/schemas/PublicKeyEntry"
      }
    },
    "playerCertificateKeys": {
      "type": "array",
      "description": "Keys used to verify player chat-signature certificates.",
      "items": {
        "$ref": "#/components/schemas/PublicKeyEntry"
      }
    },
    "authenticationKeys": {
      "type": "array",
      "description": "Keys used to verify Mojang authentication tokens.",
      "items": {
        "$ref": "#/components/schemas/PublicKeyEntry"
      }
    }
  }
}