1
0
mirror of synced 2026-01-01 00:02:54 -05:00
Files
airbyte/docs/connector-development/tutorials/cdk-speedrun-assets/pokemon.json
Alexandre Girard 5fecc7e626 add missing newline (#24035)
* add missing newline

* Automated Commit - Formatting Changes

---------

Co-authored-by: girarda <girarda@users.noreply.github.com>
2023-03-14 00:37:34 +00:00

272 lines
6.4 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"id": {
"type": ["null", "integer"]
},
"name": {
"type": ["null", "string"]
},
"base_experience": {
"type": ["null", "integer"]
},
"height": {
"type": ["null", "integer"]
},
"is_default ": {
"type": ["null", "boolean"]
},
"order": {
"type": ["null", "integer"]
},
"weight": {
"type": ["null", "integer"]
},
"abilities": {
"type": ["null", "array"],
"items": {
"type": ["null", "object"],
"properties": {
"is_hidden": {
"type": ["null", "boolean"]
},
"slot": {
"type": ["null", "integer"]
},
"ability": {
"type": ["null", "object"],
"properties": {
"name": {
"type": ["null", "string"]
},
"url": {
"type": ["null", "string"]
}
}
}
}
}
},
"forms": {
"type": ["null", "array"],
"items": {
"type": ["null", "object"],
"properties": {
"name": {
"type": ["null", "string"]
},
"url": {
"type": ["null", "string"]
}
}
}
},
"game_indices": {
"type": ["null", "array"],
"items": {
"type": ["null", "object"],
"properties": {
"game_index": {
"type": ["null", "integer"]
},
"version": {
"type": ["null", "object"],
"properties": {
"name": {
"type": ["null", "string"]
},
"url": {
"type": ["null", "string"]
}
}
}
}
}
},
"held_items": {
"type": ["null", "array"],
"items": {
"type": ["null", "object"],
"properties": {
"item": {
"type": ["null", "object"],
"properties": {
"name": {
"type": ["null", "string"]
},
"url": {
"type": ["null", "string"]
}
}
},
"version_details": {
"type": ["null", "array"],
"items": {
"type": ["null", "object"],
"properties": {
"version": {
"type": ["null", "object"],
"properties": {
"name": {
"type": ["null", "string"]
},
"url": {
"type": ["null", "string"]
}
}
},
"rarity": {
"type": ["null", "string"]
}
}
}
}
}
}
},
"location_area_encounters": {
"type": ["null", "string"]
},
"moves": {
"type": ["null", "array"],
"items": {
"type": ["null", "object"],
"properties": {
"move": {
"type": ["null", "object"],
"properties": {
"name": {
"type": ["null", "string"]
},
"url": {
"type": ["null", "string"]
}
}
},
"version_group_details": {
"type": ["null", "array"],
"items": {
"type": ["null", "object"],
"properties": {
"move_learn_method": {
"type": ["null", "object"],
"properties": {
"name": {
"type": ["null", "string"]
},
"url": {
"type": ["null", "string"]
}
}
},
"version_group": {
"type": ["null", "object"],
"properties": {
"name": {
"type": ["null", "string"]
},
"url": {
"type": ["null", "string"]
}
}
},
"level_learned_at": {
"type": ["null", "integer"]
}
}
}
}
}
}
},
"sprites": {
"type": ["null", "object"],
"properties": {
"front_default": {
"type": ["null", "string"]
},
"front_shiny": {
"type": ["null", "string"]
},
"front_female": {
"type": ["null", "string"]
},
"front_shiny_female": {
"type": ["null", "string"]
},
"back_default": {
"type": ["null", "string"]
},
"back_shiny": {
"type": ["null", "string"]
},
"back_female": {
"type": ["null", "string"]
},
"back_shiny_female": {
"type": ["null", "string"]
}
}
},
"species": {
"type": ["null", "object"],
"properties": {
"name": {
"type": ["null", "string"]
},
"url": {
"type": ["null", "string"]
}
}
},
"stats": {
"type": ["null", "array"],
"items": {
"type": ["null", "object"],
"properties": {
"stat": {
"type": ["null", "object"],
"properties": {
"name": {
"type": ["null", "string"]
},
"url": {
"type": ["null", "string"]
}
}
},
"effort": {
"type": ["null", "integer"]
},
"base_stat": {
"type": ["null", "integer"]
}
}
}
},
"types": {
"type": ["null", "array"],
"items": {
"type": ["null", "object"],
"properties": {
"slot": {
"type": ["null", "integer"]
},
"type": {
"type": ["null", "object"],
"properties": {
"name": {
"type": ["null", "string"]
},
"url": {
"type": ["null", "string"]
}
}
}
}
}
}
}
}