Mojang · Schema

PlayerAttributes

Account-level player attributes.

Games And ComicsMinecraftGamingIdentityPlayer ProfilesSessionPublic APIs

Properties

Name Type Description
privileges object
profanityFilterPreferences object
friendsPreferences object
banStatus object
View JSON Schema on GitHub

JSON Schema

minecraft-services-player-attributes-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-player-attributes-schema.json",
  "title": "PlayerAttributes",
  "description": "Account-level player attributes.",
  "type": "object",
  "properties": {
    "privileges": {
      "$ref": "#/components/schemas/PrivilegeMap"
    },
    "profanityFilterPreferences": {
      "$ref": "#/components/schemas/ProfanityFilterPreferences"
    },
    "friendsPreferences": {
      "$ref": "#/components/schemas/FriendsPreferences"
    },
    "banStatus": {
      "$ref": "#/components/schemas/BanStatus"
    }
  }
}