{ "$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)" } } }