changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "_carousel": {
+ "additionalProperties": false,
+ "properties": {
+ "apiEndpoint": {
+ "type": "string"
+ },
+ "initialCategory": {
+ "type": "string"
+ },
+ "productsForArtifact": {
+ "items": {},
+ "type": "array"
+ },
+ "storeSlug": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "apiEndpoint",
+ "storeSlug",
+ "productsForArtifact",
+ "initialCategory"
+ ],
+ "type": "object"
+ },
+ "has_more": {
+ "type": "boolean"
+ },
+ "next_cursor": {
+ "type": "string"
+ },
+ "products": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "compareAtPrice": {
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "currency": {
+ "type": "string"
+ },
+ "id": {
+ "description": "Product ID — use as product_id in create_cart",
+ "type": "string"
+ },
+ "image": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "price": {
+ "type": "number"
+ },
+ "rating": {
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "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"
+ }
+ ]
+ },
+ "reviewCount": {
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "stockStatus": {
+ "enum": [
+ "in_stock",
+ "low_stock",
+ "out_of_stock"
+ ],
+ "type": "string"
+ },
+ "title": {
+ "type": "string"
+ },
+ "url": {
+ "type": "string"
+ },
+ "vendor": {
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "id"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "query": {
+ "type": "string"
+ },
+ "sort_provenance_warning": {
+ "type": "string"
+ },
+ "store_environment": {
+ "type": "string"
+ },
+ "total": {
+ "type": "number"
+ }
+ },
+ "required": [
+ "products",
+ "total"
+ ],
+ "type": "object"
+}