changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "attributes": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "attribute": {
+ "type": "string"
+ },
+ "rank": {
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ }
+ },
+ "required": [
+ "attribute",
+ "rank"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "primary": {
+ "description": "Primary profession name",
+ "type": "string"
+ },
+ "raw": {
+ "description": "The raw decoded template (ids, not names)"
+ },
+ "secondary": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Secondary profession name, null for none"
+ },
+ "skills": {
+ "description": "The 8 bar slots in order",
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "activation": {
+ "type": "number"
+ },
+ "adrenaline": {
+ "type": "number"
+ },
+ "attribute": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "description": {
+ "type": "string"
+ },
+ "elite": {
+ "type": "boolean"
+ },
+ "energy": {
+ "type": "number"
+ },
+ "name": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "null for an empty bar slot"
+ },
+ "recharge": {
+ "type": "number"
+ },
+ "sacrifice": {
+ "type": "number"
+ },
+ "slot": {
+ "description": "Bar position 1-8",
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ }
+ },
+ "required": [
+ "slot",
+ "name"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "primary",
+ "secondary",
+ "attributes",
+ "skills",
+ "raw"
+ ],
+ "type": "object"
+}