Flag map of account privileges.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/mojang/refs/heads/main/json-schema/minecraft-services-privilege-map-schema.json", "title": "PrivilegeMap", "description": "Flag map of account privileges.", "type": "object", "properties": { "onlineChat": { "type": "object", "properties": { "enabled": { "type": "boolean", "example": true } } }, "multiplayerServer": { "type": "object", "properties": { "enabled": { "type": "boolean", "example": true } } }, "multiplayerRealms": { "type": "object", "properties": { "enabled": { "type": "boolean", "example": true } } }, "telemetry": { "type": "object", "properties": { "enabled": { "type": "boolean", "example": true } } } } }