changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "ability_scores": {
+ "properties": {
+ "cha": {
+ "description": "Charisma ability score",
+ "type": "integer"
+ },
+ "con": {
+ "description": "Constitution ability score",
+ "type": "integer"
+ },
+ "dex": {
+ "description": "Dexterity ability score",
+ "type": "integer"
+ },
+ "int": {
+ "description": "Intelligence ability score",
+ "type": "integer"
+ },
+ "str": {
+ "description": "Strength ability score",
+ "type": "integer"
+ },
+ "wis": {
+ "description": "Wisdom ability score",
+ "type": "integer"
+ }
+ },
+ "required": [
+ "str",
+ "dex",
+ "con",
+ "int",
+ "wis",
+ "cha"
+ ],
+ "type": "object"
+ },
+ "alignment": {
+ "description": "Monster alignment",
+ "type": "string"
+ },
+ "armor_class": {
+ "description": "Armor class options",
+ "items": {
+ "properties": {
+ "type": {
+ "description": "AC type or source",
+ "type": "string"
+ },
+ "value": {
+ "description": "AC value",
+ "type": "integer"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "challenge_rating": {
+ "description": "Challenge rating for encounter difficulty",
+ "type": "number"
+ },
+ "hit_dice": {
+ "description": "Hit dice formula",
+ "type": "string"
+ },
+ "hit_points": {
+ "description": "Maximum hit points",
+ "type": "integer"
+ },
+ "index": {
+ "description": "Monster index identifier",
+ "type": "string"
+ },
+ "name": {
+ "description": "Monster name",
+ "type": "string"
+ },
+ "size": {
+ "description": "Monster size category",
+ "type": "string"
+ },
+ "speed": {
+ "additionalProperties": {
+ "type": "string"
+ },
+ "description": "Movement speeds (walk, fly, swim, etc)",
+ "type": "object"
+ },
+ "type": {
+ "description": "Monster creature type",
+ "type": "string"
+ },
+ "xp": {
+ "description": "Experience points for defeating monster",
+ "type": "integer"
+ }
+ },
+ "required": [
+ "index",
+ "name",
+ "size",
+ "type",
+ "alignment",
+ "armor_class",
+ "hit_points",
+ "hit_dice",
+ "speed",
+ "ability_scores",
+ "challenge_rating",
+ "xp"
+ ],
+ "type": "object"
+}