Mojang · Schema

NameAvailability

Response from the name-availability check.

Games And ComicsMinecraftGamingIdentityPlayer ProfilesSessionPublic APIs

Properties

Name Type Description
status string
View JSON Schema on GitHub

JSON Schema

minecraft-services-name-availability-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-name-availability-schema.json",
  "title": "NameAvailability",
  "description": "Response from the name-availability check.",
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "enum": [
        "AVAILABLE",
        "DUPLICATE",
        "NOT_ALLOWED"
      ],
      "example": "AVAILABLE"
    }
  },
  "required": [
    "status"
  ]
}