changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "message": {
+ "type": "string"
+ },
+ "products": {
+ "items": {
+ "properties": {
+ "category": {
+ "type": "string"
+ },
+ "condition": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "discount_percent": {
+ "description": "Null when the listing has no original retail price on file.",
+ "type": [
+ "integer",
+ "null"
+ ]
+ },
+ "id": {
+ "description": "Opaque listing id, `product_<n>`.",
+ "type": "string"
+ },
+ "name": {
+ "type": "string"
+ },
+ "price": {
+ "description": "Unit price in cents.",
+ "type": "integer"
+ },
+ "quantity": {
+ "type": "integer"
+ }
+ },
+ "required": [
+ "id",
+ "name",
+ "category",
+ "quantity",
+ "price"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "total": {
+ "description": "Catalogue matches before the limit is applied.",
+ "type": "integer"
+ }
+ },
+ "required": [
+ "products",
+ "total",
+ "message"
+ ],
+ "type": "object"
+}