Mojang · JSON Structure

Minecraft Services Entitlements Structure

Account entitlements for Minecraft store items.

Type: object Properties: 3
Games And ComicsMinecraftGamingIdentityPlayer ProfilesSessionPublic APIs

Entitlements is a JSON Structure definition published by Mojang, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

items signature keyId

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/mojang/refs/heads/main/json-structure/minecraft-services-entitlements-structure.json",
  "name": "Entitlements",
  "description": "Account entitlements for Minecraft store items.",
  "type": "object",
  "properties": {
    "items": {
      "type": "array",
      "description": "Owned entitlement items.",
      "items": {
        "$ref": "#/components/schemas/EntitlementItem"
      }
    },
    "signature": {
      "type": "string",
      "description": "Mojang signature over the items array.",
      "example": "eyJraWQiOiJhYmMxMjMi..."
    },
    "keyId": {
      "type": "string",
      "description": "Key identifier used for the signature.",
      "example": 1
    }
  }
}