changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "attributes": {
+ "additionalProperties": {
+ "type": "string"
+ },
+ "type": "object"
+ },
+ "average_rating": {
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "categories": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "compare_at_price": {
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "currency": {
+ "type": "string"
+ },
+ "error": {
+ "const": "not_found",
+ "type": "string"
+ },
+ "id": {
+ "type": "string"
+ },
+ "image_url": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "jsonLd": {
+ "additionalProperties": {},
+ "type": "object"
+ },
+ "message": {
+ "type": "string"
+ },
+ "price": {
+ "type": "number"
+ },
+ "product_id": {
+ "type": "string"
+ },
+ "rating_provenance": {
+ "anyOf": [
+ {
+ "additionalProperties": false,
+ "properties": {
+ "note": {
+ "type": "string"
+ },
+ "origin": {
+ "const": "merchant",
+ "type": "string"
+ },
+ "strength": {
+ "const": "claimed",
+ "type": "string"
+ },
+ "verified": {
+ "const": false,
+ "type": "boolean"
+ }
+ },
+ "required": [
+ "origin",
+ "strength",
+ "verified",
+ "note"
+ ],
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "review_count": {
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "stock_status": {
+ "enum": [
+ "in_stock",
+ "low_stock",
+ "out_of_stock"
+ ],
+ "type": "string"
+ },
+ "tags": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "title": {
+ "type": "string"
+ },
+ "url": {
+ "type": "string"
+ },
+ "variants": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "id": {
+ "type": "string"
+ },
+ "options": {
+ "additionalProperties": {
+ "type": "string"
+ },
+ "type": "object"
+ },
+ "price": {
+ "type": "number"
+ },
+ "sku": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "stock_status": {
+ "enum": [
+ "in_stock",
+ "low_stock",
+ "out_of_stock"
+ ],
+ "type": "string"
+ },
+ "title": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "title",
+ "price",
+ "sku",
+ "stock_status",
+ "options"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "vendor": {
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+}