changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "results": {
+ "description": "List of top-ranked anime",
+ "items": {
+ "properties": {
+ "airing": {
+ "description": "Whether anime is currently airing",
+ "type": "boolean"
+ },
+ "episodes": {
+ "description": "Number of episodes",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "genres": {
+ "description": "List of genre names",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "image_url": {
+ "description": "URL to anime cover image",
+ "type": "string"
+ },
+ "mal_id": {
+ "description": "MyAnimeList ID",
+ "type": "number"
+ },
+ "popularity": {
+ "description": "Popularity ranking",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "rank": {
+ "description": "Rank by score",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "score": {
+ "description": "MyAnimeList score (0-10)",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "scored_by": {
+ "description": "Number of users who scored this anime",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "source": {
+ "description": "Source material (manga, light novel, etc.)",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "status": {
+ "description": "Airing status (Finished, Currently Airing, etc.)",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "synopsis": {
+ "description": "Plot synopsis",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "title": {
+ "description": "Anime title",
+ "type": "string"
+ },
+ "title_english": {
+ "description": "English title if available",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "title_japanese": {
+ "description": "Japanese title if available",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "type": {
+ "description": "Anime type (TV, Movie, OVA, etc.)",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "url": {
+ "description": "MyAnimeList URL",
+ "type": "string"
+ },
+ "year": {
+ "description": "Year the anime aired",
+ "type": [
+ "number",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "mal_id",
+ "title",
+ "airing",
+ "genres",
+ "image_url",
+ "url"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "results"
+ ],
+ "type": "object"
+}