AniList · JSON Structure

Anilist Recommendation Structure

Media recommendation

Type: object Properties: 6 Required: 1
AnimeMangaEntertainmentMediaSocialDatabaseGraphQLOAuth2Public APIs

Recommendation is a JSON Structure definition published by AniList, describing 6 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id rating userRating media mediaRecommendation user

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

anilist-recommendation-structure.json Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/anilist/refs/heads/main/json-structure/anilist-recommendation-structure.json",
  "name": "Recommendation",
  "description": "Media recommendation",
  "type": "object",
  "properties": {
    "id": {
      "type": "int32",
      "description": "The id of the recommendation"
    },
    "rating": {
      "type": "int32",
      "description": "Users rating of the recommendation"
    },
    "userRating": {
      "type": "string",
      "description": "The rating of the recommendation by currently authenticated user",
      "enum": [
        "NO_RATING",
        "RATE_UP",
        "RATE_DOWN"
      ]
    },
    "media": {
      "description": "The media the recommendation is from",
      "$ref": "./anilist-media-structure.json"
    },
    "mediaRecommendation": {
      "description": "The recommended media",
      "$ref": "./anilist-media-structure.json"
    },
    "user": {
      "description": "The user that first created the recommendation",
      "$ref": "./anilist-user-structure.json"
    }
  },
  "required": [
    "id"
  ]
}