{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/anilist/refs/heads/main/json-schema/anilist-mediacoverimage-schema.json", "title": "MediaCoverImage", "description": "MediaCoverImage schema from AniList GraphQL API v2", "type": "object", "properties": { "extraLarge": { "type": "string", "description": "The cover image url of the media at its largest size. If this size isn't available, large will be provided instead." }, "large": { "type": "string", "description": "The cover image url of the media at a large size" }, "medium": { "type": "string", "description": "The cover image url of the media at medium size" }, "color": { "type": "string", "description": "Average #hex color of cover image" } } }