changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "count": {
+ "description": "Number of items returned.",
+ "type": "integer"
+ },
+ "items": {
+ "description": "Trading post prices",
+ "items": {
+ "properties": {
+ "buys": {
+ "properties": {
+ "quantity": {
+ "description": "Buy quantity",
+ "type": "number"
+ },
+ "unit_price": {
+ "description": "Buy unit price",
+ "type": "number"
+ }
+ },
+ "type": "object"
+ },
+ "id": {
+ "description": "Item ID",
+ "type": "number"
+ },
+ "sells": {
+ "properties": {
+ "quantity": {
+ "description": "Sell quantity",
+ "type": "number"
+ },
+ "unit_price": {
+ "description": "Sell unit price",
+ "type": "number"
+ }
+ },
+ "type": "object"
+ },
+ "whitelisted": {
+ "description": "Whether item is whitelisted",
+ "type": "boolean"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "items",
+ "count"
+ ],
+ "type": "object"
+}