changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "effect": {
+ "description": "Full English effect description",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "name": {
+ "description": "Ability name",
+ "type": "string"
+ },
+ "pokemon": {
+ "description": "Pokémon that can have this ability",
+ "items": {
+ "properties": {
+ "is_hidden": {
+ "description": "Whether this is a hidden ability for this Pokémon",
+ "type": "boolean"
+ },
+ "name": {
+ "description": "Pokémon name",
+ "type": "string"
+ }
+ },
+ "required": [
+ "name",
+ "is_hidden"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "short_effect": {
+ "description": "Short English effect description",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "name",
+ "effect",
+ "short_effect",
+ "pokemon"
+ ],
+ "type": "object"
+}