changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "skills": {
+ "description": "Compact records; use get_skill for full details",
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "activation": {
+ "type": "number"
+ },
+ "attribute": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "campaign": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "elite": {
+ "type": "boolean"
+ },
+ "energy": {
+ "type": "number"
+ },
+ "id": {
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ },
+ "name": {
+ "type": "string"
+ },
+ "profession": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "recharge": {
+ "type": "number"
+ }
+ },
+ "required": [
+ "id",
+ "name",
+ "elite",
+ "profession",
+ "attribute",
+ "campaign",
+ "energy",
+ "activation",
+ "recharge"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "total": {
+ "description": "Total matches BEFORE limit is applied",
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ }
+ },
+ "required": [
+ "total",
+ "skills"
+ ],
+ "type": "object"
+}