changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "count": {
+ "type": "number"
+ },
+ "currency": {
+ "type": "string"
+ },
+ "customerId": {
+ "type": "string"
+ },
+ "hasMore": {
+ "type": [
+ "boolean",
+ "null"
+ ]
+ },
+ "ignoredFacets": {
+ "description": "Facet keys that were ignored because they are not passthrough params (e.g. countryIds -> use 'countries', usedOrNew -> use 'condition')",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "listings": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "badge": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "brandModel": {
+ "type": "string"
+ },
+ "detail": {
+ "type": "string"
+ },
+ "id": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "imageUrl": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "location": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "negotiable": {
+ "type": "boolean"
+ },
+ "priceDisplay": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "priceValue": {
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "sellerType": {
+ "anyOf": [
+ {
+ "enum": [
+ "dealer",
+ "private"
+ ],
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "url": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "url",
+ "brandModel",
+ "detail",
+ "priceDisplay",
+ "priceValue",
+ "negotiable",
+ "location",
+ "sellerType",
+ "badge",
+ "imageUrl"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "note": {
+ "type": "string"
+ },
+ "page": {
+ "type": "number"
+ },
+ "sourceUrl": {
+ "type": "string"
+ },
+ "totalCount": {
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "totalPages": {
+ "type": [
+ "number",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "customerId",
+ "totalCount",
+ "count",
+ "page",
+ "totalPages",
+ "hasMore",
+ "currency",
+ "listings",
+ "sourceUrl"
+ ],
+ "type": "object"
+}