changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "count": {
+ "description": "Number of results returned",
+ "type": "number"
+ },
+ "results": {
+ "description": "Array of anime search results",
+ "items": {
+ "properties": {
+ "average_score": {
+ "description": "Average community score (0-100)",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "cover_image": {
+ "description": "URL to cover image",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "description": {
+ "description": "Anime synopsis/description",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "duration_minutes": {
+ "description": "Episode duration in minutes",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "episodes": {
+ "description": "Total episode count",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "favourites": {
+ "description": "Number of times added to favorites",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "format": {
+ "description": "Anime format (TV, MOVIE, OVA, ONA, SPECIAL)",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "genres": {
+ "description": "List of genres",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "id": {
+ "description": "AniList media ID",
+ "type": "number"
+ },
+ "mean_score": {
+ "description": "Mean community score (0-100)",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "popularity": {
+ "description": "Popularity ranking",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "season": {
+ "description": "Season aired (SPRING, SUMMER, FALL, WINTER)",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "season_year": {
+ "description": "Year of airing season",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "site_url": {
+ "description": "AniList page URL",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "source": {
+ "description": "Original source (MANGA, LIGHT_NOVEL, VISUAL_NOVEL, etc)",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "status": {
+ "description": "Current status (FINISHED, AIRING, NOT_YET_AIRED, CANCELLED)",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "studios": {
+ "description": "List of animation studio names",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "title_english": {
+ "description": "Anime title in English",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "title_native": {
+ "description": "Anime title in native language",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "title_romaji": {
+ "description": "Anime title in Romaji",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "id",
+ "title_romaji",
+ "title_english",
+ "title_native",
+ "description",
+ "episodes",
+ "duration_minutes",
+ "status",
+ "format",
+ "source",
+ "season",
+ "season_year",
+ "average_score",
+ "mean_score",
+ "popularity",
+ "favourites",
+ "genres",
+ "cover_image",
+ "site_url",
+ "studios"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "count",
+ "results"
+ ],
+ "type": "object"
+}