GraphQLResponse 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-graphqlresponse-schema.json", "title": "GraphQLResponse", "description": "GraphQLResponse schema from AniList GraphQL API v2", "type": "object", "properties": { "data": { "type": "object", "nullable": true, "additionalProperties": true, "description": "Selection result tree shaped like the requested query" }, "errors": { "type": "array", "description": "Array of GraphQL errors when the request was not fully successful", "items": { "$ref": "#/components/schemas/GraphQLError" } }, "extensions": { "type": "object", "additionalProperties": true } } }