changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "builds": {
+ "description": "One entry per team slot, in blob order",
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "build": {
+ "additionalProperties": false,
+ "description": "Decoded bar (absent if decoding failed)",
+ "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"
+ },
+ "equipmentCode": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "error": {
+ "additionalProperties": false,
+ "properties": {
+ "code": {
+ "type": "string"
+ },
+ "message": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "code",
+ "message"
+ ],
+ "type": "object"
+ },
+ "inGamePlayerName": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "label": {
+ "description": "Slot name shown in paw-ned2 (Player, Hero 1, ...)",
+ "type": "string"
+ },
+ "notes": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "skillsCode": {
+ "description": "This entry's individual template code",
+ "type": "string"
+ },
+ "slot": {
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ }
+ },
+ "required": [
+ "slot",
+ "label",
+ "notes",
+ "inGamePlayerName",
+ "skillsCode",
+ "equipmentCode"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "builds"
+ ],
+ "type": "object"
+}