changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "hit_die": {
+ "description": "Hit die value (d6, d8, d10, d12)",
+ "type": "integer"
+ },
+ "index": {
+ "description": "Class index identifier",
+ "type": "string"
+ },
+ "name": {
+ "description": "Class name",
+ "type": "string"
+ },
+ "proficiencies": {
+ "description": "Proficiencies granted by class",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "saving_throws": {
+ "description": "Ability scores for saving throws",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "subclasses": {
+ "description": "Available subclass options",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "index",
+ "name",
+ "hit_die",
+ "saving_throws",
+ "proficiencies",
+ "subclasses"
+ ],
+ "type": "object"
+}