GraphQLError schema from AniList GraphQL API v2
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/anilist/refs/heads/main/json-schema/anilist-graphqlerror-schema.json", "title": "GraphQLError", "description": "GraphQLError schema from AniList GraphQL API v2", "type": "object", "properties": { "message": { "type": "string", "example": "Too Many Requests." }, "status": { "type": "integer", "example": 429 }, "locations": { "type": "array", "items": { "type": "object", "properties": { "line": { "type": "integer" }, "column": { "type": "integer" } } } }, "path": { "type": "array", "items": { "oneOf": [ { "type": "string" }, { "type": "integer" } ] } } } }