changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "merchants": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "last_sync": {
+ "anyOf": [
+ {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "format": "date-time",
+ "type": "string"
+ }
+ ]
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "merchant_domain": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "merchant_id": {
+ "type": "string"
+ },
+ "platform": {
+ "type": "string"
+ },
+ "product_count": {
+ "minimum": 0,
+ "type": "integer"
+ },
+ "storefront_url": {
+ "format": "uri",
+ "type": "string"
+ }
+ },
+ "required": [
+ "merchant_id",
+ "merchant_domain",
+ "storefront_url",
+ "platform",
+ "product_count",
+ "last_sync"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "returned_count": {
+ "minimum": 0,
+ "type": "integer"
+ },
+ "total": {
+ "minimum": 0,
+ "type": "integer"
+ },
+ "truncated": {
+ "type": "boolean"
+ }
+ },
+ "required": [
+ "merchants",
+ "total",
+ "returned_count",
+ "truncated"
+ ],
+ "type": "object"
+}