{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/anilist/refs/heads/main/json-structure/anilist-charactername-structure.json", "name": "CharacterName", "description": "The names of the character", "type": "object", "properties": { "first": { "type": "string", "description": "The character's given name" }, "middle": { "type": "string", "description": "The character's middle name" }, "last": { "type": "string", "description": "The character's surname" }, "full": { "type": "string", "description": "The character's first and last name" }, "native": { "type": "string", "description": "The character's full name in their native language" }, "alternative": { "type": "array", "description": "Other names the character might be referred to as", "items": { "type": "string" } }, "alternativeSpoiler": { "type": "array", "description": "Other names the character might be referred to as but are spoilers", "items": { "type": "string" } }, "userPreferred": { "type": "string", "description": "The currently authenticated users preferred name language. Default romaji for non-authenticated" } } }