changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "abilities": {
+ "description": "List of abilities",
+ "items": {
+ "properties": {
+ "is_hidden": {
+ "description": "Whether this is a hidden ability",
+ "type": "boolean"
+ },
+ "name": {
+ "description": "Ability name",
+ "type": "string"
+ }
+ },
+ "required": [
+ "name",
+ "is_hidden"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "height": {
+ "description": "Height in decimeters",
+ "type": "number"
+ },
+ "id": {
+ "description": "Pokémon ID",
+ "type": "number"
+ },
+ "name": {
+ "description": "Pokémon name",
+ "type": "string"
+ },
+ "sprites": {
+ "properties": {
+ "front_default": {
+ "description": "Default front sprite URL",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "front_shiny": {
+ "description": "Shiny front sprite URL",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "front_default",
+ "front_shiny"
+ ],
+ "type": "object"
+ },
+ "stats": {
+ "additionalProperties": {
+ "type": "number"
+ },
+ "description": "Base stats by stat name (e.g., hp, attack, defense)",
+ "type": "object"
+ },
+ "types": {
+ "description": "List of type names",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "weight": {
+ "description": "Weight in hectograms",
+ "type": "number"
+ }
+ },
+ "required": [
+ "id",
+ "name",
+ "height",
+ "weight",
+ "types",
+ "stats",
+ "abilities",
+ "sprites"
+ ],
+ "type": "object"
+}