changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "activation": {
+ "type": "number"
+ },
+ "adrenaline": {
+ "type": "number"
+ },
+ "attribute": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "campaign": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "description": {
+ "type": "string"
+ },
+ "elite": {
+ "type": "boolean"
+ },
+ "energy": {
+ "type": "number"
+ },
+ "id": {
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ },
+ "isPvpVersion": {
+ "type": "boolean"
+ },
+ "name": {
+ "type": "string"
+ },
+ "overcast": {
+ "type": "number"
+ },
+ "profession": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "recharge": {
+ "type": "number"
+ },
+ "sacrifice": {
+ "type": "number"
+ },
+ "type": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Skill type, e.g. Enchantment Spell"
+ },
+ "upkeep": {
+ "type": "number"
+ }
+ },
+ "required": [
+ "id",
+ "name",
+ "elite",
+ "energy",
+ "activation",
+ "recharge",
+ "adrenaline",
+ "sacrifice",
+ "overcast",
+ "upkeep",
+ "description",
+ "isPvpVersion",
+ "profession",
+ "attribute",
+ "campaign",
+ "type"
+ ],
+ "type": "object"
+}