Mojang · Schema

Cape

A cape owned by the authenticated player.

Games And ComicsMinecraftGamingIdentityPlayer ProfilesSessionPublic APIs

Properties

Name Type Description
id string Cape UUID.
state string
url string Cape texture URL.
alias string Cape display name.
View JSON Schema on GitHub

JSON Schema

minecraft-services-cape-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-cape-schema.json",
  "title": "Cape",
  "description": "A cape owned by the authenticated player.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Cape UUID.",
      "example": "1981aad373fa9754"
    },
    "state": {
      "type": "string",
      "enum": [
        "ACTIVE",
        "INACTIVE"
      ],
      "example": "ACTIVE"
    },
    "url": {
      "type": "string",
      "format": "uri",
      "description": "Cape texture URL.",
      "example": "https://textures.minecraft.net/texture/cape123..."
    },
    "alias": {
      "type": "string",
      "description": "Cape display name.",
      "example": "Migrator"
    }
  },
  "required": [
    "id",
    "state",
    "url"
  ]
}