AniList · Schema

GraphQLError

GraphQLError schema from AniList GraphQL API v2

AnimeMangaEntertainmentMediaSocialDatabaseGraphQLOAuth2Public APIs

Properties

Name Type Description
message string
status integer
locations array
path array
View JSON Schema on GitHub

JSON Schema

anilist-graphqlerror-schema.json Raw ↑
{
  "$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"
          }
        ]
      }
    }
  }
}