Mojang · JSON Structure

Minecraft Services Authenticated Profile Structure

The authenticated player's own profile with skins and capes.

Type: object Properties: 5 Required: 2
Games And ComicsMinecraftGamingIdentityPlayer ProfilesSessionPublic APIs

AuthenticatedProfile is a JSON Structure definition published by Mojang, describing 5 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id name skins capes profileActions

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-authenticated-profile-structure.json",
  "name": "AuthenticatedProfile",
  "description": "The authenticated player's own profile with skins and capes.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Player UUID without hyphens.",
      "example": "853c80ef3c3749fdaa49938b674adae6"
    },
    "name": {
      "type": "string",
      "description": "Current username.",
      "example": "jeb_"
    },
    "skins": {
      "type": "array",
      "description": "All skins owned by the player; one is marked ACTIVE.",
      "items": {
        "$ref": "#/components/schemas/Skin"
      }
    },
    "capes": {
      "type": "array",
      "description": "All capes owned by the player; one may be marked ACTIVE.",
      "items": {
        "$ref": "#/components/schemas/Cape"
      }
    },
    "profileActions": {
      "type": "array",
      "description": "Sanctions in effect on the profile (e.g. FORCED_NAME_CHANGE).",
      "items": {
        "type": "string"
      },
      "example": []
    }
  },
  "required": [
    "id",
    "name"
  ]
}