AniList · Schema

FuzzyDate

Date object that allows for incomplete date values (fuzzy)

AnimeMangaEntertainmentMediaSocialDatabaseGraphQLOAuth2Public APIs

Properties

Name Type Description
year integer Numeric Year (2017)
month integer Numeric Month (3)
day integer Numeric Day (24)
View JSON Schema on GitHub

JSON Schema

anilist-fuzzydate-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-fuzzydate-schema.json",
  "title": "FuzzyDate",
  "description": "Date object that allows for incomplete date values (fuzzy)",
  "type": "object",
  "properties": {
    "year": {
      "type": "integer",
      "description": "Numeric Year (2017)"
    },
    "month": {
      "type": "integer",
      "description": "Numeric Month (3)"
    },
    "day": {
      "type": "integer",
      "description": "Numeric Day (24)"
    }
  }
}