From fe77072f834b5cbc1ba63b4bcc22cb5e828a8e94 Mon Sep 17 00:00:00 2001 From: Kayden Althen Date: Wed, 31 Jan 2024 17:41:35 -0600 Subject: [PATCH 1/6] DSCS-863: add minLength to product schema --- examples/events/snowplow-debugger/product.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/examples/events/snowplow-debugger/product.json b/examples/events/snowplow-debugger/product.json index c8c57ae2..7ba43942 100644 --- a/examples/events/snowplow-debugger/product.json +++ b/examples/events/snowplow-debugger/product.json @@ -9,7 +9,8 @@ }, "sku": { "type": "string", - "maxLength": 256 + "maxLength": 256, + "minLength": 1 }, "topLevelSku": { "type": [ @@ -174,4 +175,4 @@ "version": "2-0-5" }, "$schema": "http://iglucentral.com/schemas/com.snowplowanalytics.self-desc/schema/jsonschema/1-0-0#" - } \ No newline at end of file + } From 01c372c7a19c56afa794537c40c94774db7f7c6f Mon Sep 17 00:00:00 2001 From: Kayden Althen Date: Thu, 1 Feb 2024 14:37:07 -0600 Subject: [PATCH 2/6] update version for minor version schema change --- examples/events/snowplow-debugger/product.json | 2 +- packages/storefront-events-collector/src/schemas.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/events/snowplow-debugger/product.json b/examples/events/snowplow-debugger/product.json index 7ba43942..63dffc3d 100644 --- a/examples/events/snowplow-debugger/product.json +++ b/examples/events/snowplow-debugger/product.json @@ -172,7 +172,7 @@ "vendor": "com.adobe.magento.entity", "name": "product", "format": "jsonschema", - "version": "2-0-5" + "version": "2-1-0" }, "$schema": "http://iglucentral.com/schemas/com.snowplowanalytics.self-desc/schema/jsonschema/1-0-0#" } diff --git a/packages/storefront-events-collector/src/schemas.ts b/packages/storefront-events-collector/src/schemas.ts index f7bd0f71..96cf61db 100644 --- a/packages/storefront-events-collector/src/schemas.ts +++ b/packages/storefront-events-collector/src/schemas.ts @@ -6,7 +6,7 @@ const schemas = { EXPERIENCE_PLATFORM_CONNECTOR_EXTENSION_SCHEMA_URL: "iglu:com.adobe.magento.entity/experience-platform-connector-extension/jsonschema/1-0-1", MAGENTO_JS_TRACKER_SCHEMA_URL: "iglu:com.adobe.magento.entity/magento-js-tracker/jsonschema/2-0-0", - PRODUCT_SCHEMA_URL: "iglu:com.adobe.magento.entity/product/jsonschema/2-0-5", + PRODUCT_SCHEMA_URL: "iglu:com.adobe.magento.entity/product/jsonschema/2-1-0", RECOMMENDATION_UNIT_SCHEMA_URL: "iglu:com.adobe.magento.entity/recommendation-unit/jsonschema/1-0-4", RECOMMENDED_ITEM_SCHEMA_URL: "iglu:com.adobe.magento.entity/recommended-item/jsonschema/1-0-4", SEARCH_INPUT_SCHEMA_URL: "iglu:com.adobe.magento.entity/search-input/jsonschema/2-0-0", From 30ce68e3363e1e9eb7b8d59ec3403d3234d2c4cf Mon Sep 17 00:00:00 2001 From: Kayden Althen Date: Fri, 2 Feb 2024 15:26:21 -0600 Subject: [PATCH 3/6] changed version to patch bump due to snowplow restriction --- examples/events/snowplow-debugger/product.json | 2 +- packages/storefront-events-collector/src/schemas.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/events/snowplow-debugger/product.json b/examples/events/snowplow-debugger/product.json index 63dffc3d..1ea9628d 100644 --- a/examples/events/snowplow-debugger/product.json +++ b/examples/events/snowplow-debugger/product.json @@ -172,7 +172,7 @@ "vendor": "com.adobe.magento.entity", "name": "product", "format": "jsonschema", - "version": "2-1-0" + "version": "2-0-6" }, "$schema": "http://iglucentral.com/schemas/com.snowplowanalytics.self-desc/schema/jsonschema/1-0-0#" } diff --git a/packages/storefront-events-collector/src/schemas.ts b/packages/storefront-events-collector/src/schemas.ts index 96cf61db..fe77e55f 100644 --- a/packages/storefront-events-collector/src/schemas.ts +++ b/packages/storefront-events-collector/src/schemas.ts @@ -6,7 +6,7 @@ const schemas = { EXPERIENCE_PLATFORM_CONNECTOR_EXTENSION_SCHEMA_URL: "iglu:com.adobe.magento.entity/experience-platform-connector-extension/jsonschema/1-0-1", MAGENTO_JS_TRACKER_SCHEMA_URL: "iglu:com.adobe.magento.entity/magento-js-tracker/jsonschema/2-0-0", - PRODUCT_SCHEMA_URL: "iglu:com.adobe.magento.entity/product/jsonschema/2-1-0", + PRODUCT_SCHEMA_URL: "iglu:com.adobe.magento.entity/product/jsonschema/2-0-6", RECOMMENDATION_UNIT_SCHEMA_URL: "iglu:com.adobe.magento.entity/recommendation-unit/jsonschema/1-0-4", RECOMMENDED_ITEM_SCHEMA_URL: "iglu:com.adobe.magento.entity/recommended-item/jsonschema/1-0-4", SEARCH_INPUT_SCHEMA_URL: "iglu:com.adobe.magento.entity/search-input/jsonschema/2-0-0", From a0663b3b5c7281e358f36662fe681b34ebccda5f Mon Sep 17 00:00:00 2001 From: Kayden Althen Date: Tue, 6 Feb 2024 14:54:10 -0600 Subject: [PATCH 4/6] bump version to major for breaking change --- examples/events/snowplow-debugger/product.json | 2 +- packages/storefront-events-collector/src/schemas.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/events/snowplow-debugger/product.json b/examples/events/snowplow-debugger/product.json index 1ea9628d..cf1d1c20 100644 --- a/examples/events/snowplow-debugger/product.json +++ b/examples/events/snowplow-debugger/product.json @@ -172,7 +172,7 @@ "vendor": "com.adobe.magento.entity", "name": "product", "format": "jsonschema", - "version": "2-0-6" + "version": "3-0-0" }, "$schema": "http://iglucentral.com/schemas/com.snowplowanalytics.self-desc/schema/jsonschema/1-0-0#" } diff --git a/packages/storefront-events-collector/src/schemas.ts b/packages/storefront-events-collector/src/schemas.ts index fe77e55f..e4f8105e 100644 --- a/packages/storefront-events-collector/src/schemas.ts +++ b/packages/storefront-events-collector/src/schemas.ts @@ -6,7 +6,7 @@ const schemas = { EXPERIENCE_PLATFORM_CONNECTOR_EXTENSION_SCHEMA_URL: "iglu:com.adobe.magento.entity/experience-platform-connector-extension/jsonschema/1-0-1", MAGENTO_JS_TRACKER_SCHEMA_URL: "iglu:com.adobe.magento.entity/magento-js-tracker/jsonschema/2-0-0", - PRODUCT_SCHEMA_URL: "iglu:com.adobe.magento.entity/product/jsonschema/2-0-6", + PRODUCT_SCHEMA_URL: "iglu:com.adobe.magento.entity/product/jsonschema/3-0-0", RECOMMENDATION_UNIT_SCHEMA_URL: "iglu:com.adobe.magento.entity/recommendation-unit/jsonschema/1-0-4", RECOMMENDED_ITEM_SCHEMA_URL: "iglu:com.adobe.magento.entity/recommended-item/jsonschema/1-0-4", SEARCH_INPUT_SCHEMA_URL: "iglu:com.adobe.magento.entity/search-input/jsonschema/2-0-0", From 45a132d24007558ba882a721b1b2b2098f0a4893 Mon Sep 17 00:00:00 2001 From: Kayden Althen Date: Thu, 22 Feb 2024 14:12:05 -0600 Subject: [PATCH 5/6] update required fields with minLength --- .../events/snowplow-debugger/product.json | 6 ++- .../recommendation-unit.json | 18 +++++---- .../snowplow-debugger/recommended-item.json | 27 ++++++++----- .../snowplow-debugger/recs-api-request.json | 12 +++--- .../snowplow-debugger/recs-api-response.json | 1 - .../snowplow-debugger/search-input.json | 11 ++++-- .../search-result-product.json | 15 ++++--- .../snowplow-debugger/search-results.json | 39 ++++++++++++------- .../snowplow-debugger/shopping-cart.json | 12 +++--- .../storefront-instance.json | 27 ++++++++----- 10 files changed, 105 insertions(+), 63 deletions(-) diff --git a/examples/events/snowplow-debugger/product.json b/examples/events/snowplow-debugger/product.json index cf1d1c20..dbb32a92 100644 --- a/examples/events/snowplow-debugger/product.json +++ b/examples/events/snowplow-debugger/product.json @@ -5,7 +5,9 @@ "type": "integer" }, "name": { - "maxLength": 256 + "type": "string", + "maxLength": 256, + "minLength": 1 }, "sku": { "type": "string", @@ -172,7 +174,7 @@ "vendor": "com.adobe.magento.entity", "name": "product", "format": "jsonschema", - "version": "3-0-0" + "version": "2-0-7" }, "$schema": "http://iglucentral.com/schemas/com.snowplowanalytics.self-desc/schema/jsonschema/1-0-0#" } diff --git a/examples/events/snowplow-debugger/recommendation-unit.json b/examples/events/snowplow-debugger/recommendation-unit.json index 10276b0a..a70b27bf 100644 --- a/examples/events/snowplow-debugger/recommendation-unit.json +++ b/examples/events/snowplow-debugger/recommendation-unit.json @@ -3,11 +3,13 @@ "properties": { "name": { "type": "string", - "maxLength": 256 + "maxLength": 256, + "minLength": 1 }, "unitId": { "type": "string", - "maxLength": 256 + "maxLength": 256, + "minLength": 1 }, "itemsCount": { "type": "integer" @@ -17,15 +19,18 @@ }, "configType": { "type": "string", - "maxLength": 256 + "maxLength": 256, + "minLength": 1 }, "source": { "type": "string", - "maxLength": 256 + "maxLength": 256, + "minLength": 1 }, "recType": { "type": "string", - "maxLength": 256 + "maxLength": 256, + "minLength": 1 }, "placement": { "type": [ @@ -63,8 +68,7 @@ "vendor": "com.adobe.magento.entity", "name": "recommendation-unit", "format": "jsonschema", - "version": "1-0-4" + "version": "1-0-5" }, "$schema": "http://iglucentral.com/schemas/com.snowplowanalytics.self-desc/schema/jsonschema/1-0-0#" } - \ No newline at end of file diff --git a/examples/events/snowplow-debugger/recommended-item.json b/examples/events/snowplow-debugger/recommended-item.json index 0e0b0334..0932d888 100644 --- a/examples/events/snowplow-debugger/recommended-item.json +++ b/examples/events/snowplow-debugger/recommended-item.json @@ -3,7 +3,8 @@ "properties": { "unitId": { "type": "string", - "maxLength": 256 + "maxLength": 256, + "minLength": 1 }, "serviceRank": { "type": "integer" @@ -13,15 +14,18 @@ }, "name": { "type": "string", - "maxLength": 256 + "maxLength": 256, + "minLength": 1 }, "sku": { "type": "string", - "maxLength": 64 + "maxLength": 64, + "minLength": 1 }, "url": { "type": "string", - "maxLength": 2083 + "maxLength": 2083, + "minLength": 1 }, "imageUrl": { "type": [ @@ -54,7 +58,8 @@ "type": "object", "properties": { "code": { - "type": "string" + "type": "string", + "minLength": 1 }, "amount": { "type": "number" @@ -73,7 +78,8 @@ "type": "object", "properties": { "code": { - "type": "string" + "type": "string", + "minLength": 1 }, "amount": { "type": "number" @@ -114,7 +120,8 @@ "type": "object", "properties": { "code": { - "type": "string" + "type": "string", + "minLength": 1 }, "amount": { "type": "number" @@ -133,7 +140,8 @@ "type": "object", "properties": { "code": { - "type": "string" + "type": "string", + "minLength": 1 }, "amount": { "type": "number" @@ -183,8 +191,7 @@ "vendor": "com.adobe.magento.entity", "name": "recommended-item", "format": "jsonschema", - "version": "1-0-4" + "version": "1-0-5" }, "$schema": "http://iglucentral.com/schemas/com.snowplowanalytics.self-desc/schema/jsonschema/1-0-0#" } - \ No newline at end of file diff --git a/examples/events/snowplow-debugger/recs-api-request.json b/examples/events/snowplow-debugger/recs-api-request.json index 3b2ccd50..c70518c7 100644 --- a/examples/events/snowplow-debugger/recs-api-request.json +++ b/examples/events/snowplow-debugger/recs-api-request.json @@ -22,21 +22,24 @@ ] }, "websiteCode": { - "type": "string" + "type": "string", + "minLength": 1 }, "storeId": { "type": "integer" }, "storeCode": { "type": "string", - "maxLength": 256 + "maxLength": 256, + "minLength": 1 }, "storeViewId": { "type": "integer" }, "storeViewCode": { "type": "string", - "maxLength": 256 + "maxLength": 256, + "minLength": 1 }, "defaultStoreViewCode": { "type": [ @@ -168,8 +171,7 @@ "vendor": "com.adobe.magento.entity", "name": "recs-api-request", "format": "jsonschema", - "version": "2-0-13" + "version": "2-0-14" }, "$schema": "http://iglucentral.com/schemas/com.snowplowanalytics.self-desc/schema/jsonschema/1-0-0#" } - \ No newline at end of file diff --git a/examples/events/snowplow-debugger/recs-api-response.json b/examples/events/snowplow-debugger/recs-api-response.json index dfa8cae1..8d5c2dc1 100644 --- a/examples/events/snowplow-debugger/recs-api-response.json +++ b/examples/events/snowplow-debugger/recs-api-response.json @@ -41,4 +41,3 @@ }, "$schema": "http://iglucentral.com/schemas/com.snowplowanalytics.self-desc/schema/jsonschema/1-0-0#" } - \ No newline at end of file diff --git a/examples/events/snowplow-debugger/search-input.json b/examples/events/snowplow-debugger/search-input.json index 419c4de8..f476415e 100644 --- a/examples/events/snowplow-debugger/search-input.json +++ b/examples/events/snowplow-debugger/search-input.json @@ -2,7 +2,8 @@ "description": "Schema for Search Input Entity", "properties": { "searchUnitId": { - "type": "string" + "type": "string", + "minLength": 1 }, "source": { "type": [ @@ -11,7 +12,8 @@ ] }, "queryTypes": { - "type": "array" + "type": "array", + "minLength": 1 }, "searchRequestId": { "type": "string", @@ -19,7 +21,8 @@ "minLength": 1 }, "query": { - "type": "string" + "type": "string", + "minLength": 1 }, "page": { "type": "number" @@ -83,7 +86,7 @@ "vendor": "com.adobe.magento.entity", "name": "search-input", "format": "jsonschema", - "version": "1-0-11" + "version": "1-0-12" }, "$schema": "http://iglucentral.com/schemas/com.snowplowanalytics.self-desc/schema/jsonschema/1-0-0#" } diff --git a/examples/events/snowplow-debugger/search-result-product.json b/examples/events/snowplow-debugger/search-result-product.json index cc987e06..fb8d78d0 100644 --- a/examples/events/snowplow-debugger/search-result-product.json +++ b/examples/events/snowplow-debugger/search-result-product.json @@ -2,19 +2,23 @@ "description": "Schema for Product Search Result Entity", "properties": { "name": { - "type": "string" + "type": "string", + "minLength": 1 }, "url": { - "type": "string" + "type": "string", + "minLength": 1 }, "rank": { "type": "number" }, "sku": { - "type": "string" + "type": "string", + "minLength": 1 }, "imageUrl": { - "type": "string" + "type": "string", + "minLength": 1 }, "price": { "type": "number" @@ -33,8 +37,7 @@ "vendor": "com.adobe.magento.entity", "name": "search-result-product", "format": "jsonschema", - "version": "1-0-2" + "version": "1-0-3" }, "$schema": "http://iglucentral.com/schemas/com.snowplowanalytics.self-desc/schema/jsonschema/1-0-0#" } - \ No newline at end of file diff --git a/examples/events/snowplow-debugger/search-results.json b/examples/events/snowplow-debugger/search-results.json index b4df1395..2552f70e 100644 --- a/examples/events/snowplow-debugger/search-results.json +++ b/examples/events/snowplow-debugger/search-results.json @@ -2,7 +2,8 @@ "description": "Schema for Search Results Entity", "properties": { "searchUnitId": { - "type": "string" + "type": "string", + "minLength": 1 }, "searchRequestId": { "type": "string", @@ -27,19 +28,23 @@ "description": "Schema for Product Search Result Entity", "properties": { "name": { - "type": "string" + "type": "string", + "minLength": 1 }, "url": { - "type": "string" + "type": "string", + "minLength": 1 }, "rank": { "type": "number" }, "sku": { - "type": "string" + "type": "string", + "minLength": 1 }, "imageUrl": { - "type": "string" + "type": "string", + "minLength": 1 }, "price": { "type": "number" @@ -72,7 +77,8 @@ "description": "Schema for Suggestion Search Results ", "properties": { "suggestion": { - "type": "string" + "type": "string", + "minLength": 1 }, "rank": { "type": "number" @@ -102,10 +108,12 @@ "description": "Schema for Category Search Results", "properties": { "name": { - "type": "string" + "type": "string", + "minLength": 1 }, "url": { - "type": "string" + "type": "string", + "minLength": 1 }, "rank": { "type": "number" @@ -150,20 +158,25 @@ "items": { "properties": { "attribute": { - "type": "string" + "type": "string", + "minLength": 1 }, "title": { - "type": "string" + "type": "string", + "minLength": 1 }, "type": { - "type": "string" + "type": "string", + "minLength": 1 }, "buckets": { "type": "array", + "minLength": 1, "items": { "properties": { "title": { - "type": "string" + "type": "string", + "minLength": 1 } }, "type": "object", @@ -204,7 +217,7 @@ "vendor": "com.adobe.magento.entity", "name": "search-results", "format": "jsonschema", - "version": "1-0-11" + "version": "1-0-12" }, "$schema": "http://iglucentral.com/schemas/com.snowplowanalytics.self-desc/schema/jsonschema/1-0-0#" } diff --git a/examples/events/snowplow-debugger/shopping-cart.json b/examples/events/snowplow-debugger/shopping-cart.json index 6a67ffbb..93d01bd3 100644 --- a/examples/events/snowplow-debugger/shopping-cart.json +++ b/examples/events/snowplow-debugger/shopping-cart.json @@ -29,14 +29,17 @@ }, "productName": { "type": "string", - "maxLength": 256 + "maxLength": 256, + "minLength": 1 }, "cartItemId": { - "type": "string" + "type": "string", + "minLength": 1 }, "productSku": { "type": "string", - "maxLength": 256 + "maxLength": 256, + "minLength": 1 }, "mainImageUrl": { "type": "string", @@ -79,8 +82,7 @@ "vendor": "com.adobe.magento.entity", "name": "shopping-cart", "format": "jsonschema", - "version": "2-0-0" + "version": "2-0-1" }, "$schema": "http://iglucentral.com/schemas/com.snowplowanalytics.self-desc/schema/jsonschema/1-0-0#" } - \ No newline at end of file diff --git a/examples/events/snowplow-debugger/storefront-instance.json b/examples/events/snowplow-debugger/storefront-instance.json index fa7beb4d..5c55fea8 100644 --- a/examples/events/snowplow-debugger/storefront-instance.json +++ b/examples/events/snowplow-debugger/storefront-instance.json @@ -3,7 +3,8 @@ "properties": { "environmentId": { "type": "string", - "maxLength": 256 + "maxLength": 256, + "minLength": 1 }, "instanceId": { "type": "string", @@ -11,11 +12,13 @@ }, "environment": { "type": "string", - "maxLength": 16 + "maxLength": 16, + "minLength": 1 }, "storeUrl": { "type": "string", - "maxLength": 2083 + "maxLength": 2083, + "minLength": 1 }, "websiteId": { "type": "integer" @@ -40,23 +43,28 @@ }, "websiteName": { "type": "string", - "maxLength": 256 + "maxLength": 256, + "minLength": 1 }, "storeName": { "type": "string", - "maxLength": 256 + "maxLength": 256, + "minLength": 1 }, "storeViewName": { "type": "string", - "maxLength": 256 + "maxLength": 256, + "minLength": 1 }, "baseCurrencyCode": { "type": "string", - "maxLength": 3 + "maxLength": 3, + "minLength": 1 }, "storeViewCurrencyCode": { "type": "string", - "maxLength": 3 + "maxLength": 3, + "minLength": 1 }, "catalogExtensionVersion": { "type": [ @@ -89,8 +97,7 @@ "vendor": "com.adobe.magento.entity", "name": "storefront-instance", "format": "jsonschema", - "version": "3-0-1" + "version": "3-0-2" }, "$schema": "http://iglucentral.com/schemas/com.snowplowanalytics.self-desc/schema/jsonschema/1-0-0#" } - \ No newline at end of file From c8340edb2e9ffa6586b80b9014a769a5abfc66d5 Mon Sep 17 00:00:00 2001 From: Kayden Althen Date: Thu, 22 Feb 2024 14:24:35 -0600 Subject: [PATCH 6/6] update schema.ts --- .../events/snowplow-debugger/search-input.json | 2 +- .../events/snowplow-debugger/search-results.json | 2 +- .../storefront-events-collector/src/schemas.ts | 16 ++++++++-------- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/examples/events/snowplow-debugger/search-input.json b/examples/events/snowplow-debugger/search-input.json index f476415e..43643f59 100644 --- a/examples/events/snowplow-debugger/search-input.json +++ b/examples/events/snowplow-debugger/search-input.json @@ -86,7 +86,7 @@ "vendor": "com.adobe.magento.entity", "name": "search-input", "format": "jsonschema", - "version": "1-0-12" + "version": "2-0-1" }, "$schema": "http://iglucentral.com/schemas/com.snowplowanalytics.self-desc/schema/jsonschema/1-0-0#" } diff --git a/examples/events/snowplow-debugger/search-results.json b/examples/events/snowplow-debugger/search-results.json index 2552f70e..921f9d15 100644 --- a/examples/events/snowplow-debugger/search-results.json +++ b/examples/events/snowplow-debugger/search-results.json @@ -217,7 +217,7 @@ "vendor": "com.adobe.magento.entity", "name": "search-results", "format": "jsonschema", - "version": "1-0-12" + "version": "2-0-1" }, "$schema": "http://iglucentral.com/schemas/com.snowplowanalytics.self-desc/schema/jsonschema/1-0-0#" } diff --git a/packages/storefront-events-collector/src/schemas.ts b/packages/storefront-events-collector/src/schemas.ts index e4f8105e..ea27ffe7 100644 --- a/packages/storefront-events-collector/src/schemas.ts +++ b/packages/storefront-events-collector/src/schemas.ts @@ -6,17 +6,17 @@ const schemas = { EXPERIENCE_PLATFORM_CONNECTOR_EXTENSION_SCHEMA_URL: "iglu:com.adobe.magento.entity/experience-platform-connector-extension/jsonschema/1-0-1", MAGENTO_JS_TRACKER_SCHEMA_URL: "iglu:com.adobe.magento.entity/magento-js-tracker/jsonschema/2-0-0", - PRODUCT_SCHEMA_URL: "iglu:com.adobe.magento.entity/product/jsonschema/3-0-0", - RECOMMENDATION_UNIT_SCHEMA_URL: "iglu:com.adobe.magento.entity/recommendation-unit/jsonschema/1-0-4", - RECOMMENDED_ITEM_SCHEMA_URL: "iglu:com.adobe.magento.entity/recommended-item/jsonschema/1-0-4", - SEARCH_INPUT_SCHEMA_URL: "iglu:com.adobe.magento.entity/search-input/jsonschema/2-0-0", + PRODUCT_SCHEMA_URL: "iglu:com.adobe.magento.entity/product/jsonschema/2-0-7", + RECOMMENDATION_UNIT_SCHEMA_URL: "iglu:com.adobe.magento.entity/recommendation-unit/jsonschema/1-0-5", + RECOMMENDED_ITEM_SCHEMA_URL: "iglu:com.adobe.magento.entity/recommended-item/jsonschema/1-0-5", + SEARCH_INPUT_SCHEMA_URL: "iglu:com.adobe.magento.entity/search-input/jsonschema/2-0-1", SEARCH_RESULT_CATEGORY_SCHEMA_URL: "iglu:com.adobe.magento.entity/search-result-category/jsonschema/1-0-1", - SEARCH_RESULT_PRODUCT_SCHEMA_URL: "iglu:com.adobe.magento.entity/search-result-product/jsonschema/1-0-2", - SEARCH_RESULTS_SCHEMA_URL: "iglu:com.adobe.magento.entity/search-results/jsonschema/2-0-0", + SEARCH_RESULT_PRODUCT_SCHEMA_URL: "iglu:com.adobe.magento.entity/search-result-product/jsonschema/1-0-3", + SEARCH_RESULTS_SCHEMA_URL: "iglu:com.adobe.magento.entity/search-results/jsonschema/2-0-1", SEARCH_RESULT_SUGGESTION_SCHEMA_URL: "iglu:com.adobe.magento.entity/search-result-suggestion/jsonschema/1-0-1", - SHOPPING_CART_SCHEMA_URL: "iglu:com.adobe.magento.entity/shopping-cart/jsonschema/2-0-0", + SHOPPING_CART_SCHEMA_URL: "iglu:com.adobe.magento.entity/shopping-cart/jsonschema/2-0-1", SHOPPER_SCHEMA_URL: "iglu:com.adobe.magento.entity/shopper/jsonschema/1-0-0", - STOREFRONT_INSTANCE_SCHEMA_URL: "iglu:com.adobe.magento.entity/storefront-instance/jsonschema/3-0-1", + STOREFRONT_INSTANCE_SCHEMA_URL: "iglu:com.adobe.magento.entity/storefront-instance/jsonschema/3-0-2", }; export default schemas;