From c1a9cdf9111f022f26f0f3cfa4875809176854d6 Mon Sep 17 00:00:00 2001 From: andiec Date: Tue, 21 Nov 2023 13:24:00 -0500 Subject: [PATCH 1/2] updated ListingsItemissuesChangeNotification cr: https://code.amazon.com/reviews/CR-106928054 --- .../ListingsItemIssuesChangeNotification.json | 2 +- ...emIssuesChangeNotification_2023-12-13.json | 245 ++++++++++++++++++ 2 files changed, 246 insertions(+), 1 deletion(-) create mode 100644 schemas/notifications/ListingsItemIssuesChangeNotification_2023-12-13.json diff --git a/schemas/notifications/ListingsItemIssuesChangeNotification.json b/schemas/notifications/ListingsItemIssuesChangeNotification.json index 957aa814..7e465caf 100644 --- a/schemas/notifications/ListingsItemIssuesChangeNotification.json +++ b/schemas/notifications/ListingsItemIssuesChangeNotification.json @@ -242,4 +242,4 @@ } } } -} +} \ No newline at end of file diff --git a/schemas/notifications/ListingsItemIssuesChangeNotification_2023-12-13.json b/schemas/notifications/ListingsItemIssuesChangeNotification_2023-12-13.json new file mode 100644 index 00000000..ac9687e7 --- /dev/null +++ b/schemas/notifications/ListingsItemIssuesChangeNotification_2023-12-13.json @@ -0,0 +1,245 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema", + "title": "Listings Item Issues Change Notification", + "description": "To be delivered when issues are created, changed, or resolved for a listings item.", + "type": "object", + "examples": [ + { + "NotificationVersion": "1.0", + "NotificationType": "LISTINGS_ITEM_ISSUES_CHANGE", + "PayloadVersion": "2023-12-13", + "EventTime": "2024-02-05T18:59:30.194Z", + "Payload": { + "SellerId": "AXXXXXXXXXXXXX", + "MarketplaceId": "ATVPDKIKX0DER", + "Asin": "BT6RZ7JM4H", + "Sku": "NLS-SHOES-03", + "Severities": [ + "ERROR", + "WARNING" + ], + "EnforcementActions": [ + "SEARCH_SUPPRESSED", + "LISTING_SUPPRESSED", + "ATTRIBUTE_SUPPRESSED", + "CATALOG_ITEM_REMOVED" + ] + }, + "NotificationMetadata": { + "ApplicationId": "amzn1.sellerapps.app.f108f511-eeac-46a6-b125-bcb752069ed0", + "SubscriptionId": "93b098e1-c42-2f45-93a1-78910a6a8369", + "PublishTime": "2024-02-05T18:59:48.768Z", + "NotificationId": "8e009934-da2c-4f9c-9bc7-93f23b7e1f60" + } + } + ], + "required": [ + "NotificationVersion", + "NotificationType", + "PayloadVersion", + "EventTime", + "Payload", + "NotificationMetadata" + ], + "properties": { + "NotificationVersion": { + "type": "string", + "title": "Notification Version", + "description": "The version of the notification.", + "examples": [ + "1.0" + ] + }, + "NotificationType": { + "type": "string", + "title": "Notification Type", + "description": "The type of the notification.", + "enum": ["LISTINGS_ITEM_ISSUES_CHANGE"] + }, + "PayloadVersion": { + "type": "string", + "title": "Payload Version", + "description": "The version of the payload.", + "examples": [ + "2023-12-13" + ] + }, + "EventTime": { + "type": "string", + "format": "date-time", + "title": "Event Time", + "description": "Timestamp of the event, formatted as ISO8601 date-time.", + "examples": [ + "2019-03-20T18:59:30.194Z" + ] + }, + "Payload": { + "type": "object", + "title": "Payload", + "description": "The details of this notification.", + "examples": [ + { + "SellerId": "A3AYAZLIQ7AX77", + "MarketplaceId": "ATVPDKIKX0DER", + "Asin": "BT6RZ7JM4H", + "Sku": "NLS-SHOES-03", + "Severities": [ + "ERROR", + "WARNING" + ], + "EnforcementActions": [ + "SEARCH_SUPPRESSED", + "LISTING_SUPPRESSED", + "ATTRIBUTE_SUPPRESSED", + "CATALOG_ITEM_REMOVED" + ] + } + ], + "required": [ + "SellerId", + "Sku", + "Severities" + ], + "properties": { + "SellerId": { + "type": "string", + "title": "Seller ID", + "description": "Selling partner identifier, such as a merchant account or vendor code, of the affected listings item.", + "examples": [ + "AXXXXXXXXXXXXX", + "TXXXX" + ] + }, + "MarketplaceId": { + "type": "string", + "title": "Marketplace ID", + "description": "Amazon marketplace identifier of the affected listings item.", + "examples": [ + "ATVPDKIKX0DER" + ] + }, + "Asin": { + "type": "string", + "title": "ASIN", + "description": "The Amazon Standard Identification Number (ASIN) identifier of the catalog item associated with the listings item.", + "examples": [ + "BT6RZ7JM4H" + ] + }, + "Sku": { + "type": "string", + "title": "SKU", + "description": "Identifier of the affected listings item.", + "examples": [ + "NLS-SHOES-03" + ] + }, + "Severities": { + "type": "array", + "title": "Severities", + "description": "Array of severities for the issues currently associated with the affected listings item. When no issues are affecting the listings item, \"NONE\" is provided instead.", + "items": { + "type": "string", + "enum": [ + "NONE", + "ERROR", + "WARNING" + ], + "x-docgen-enum-table-extension": [ + { + "value": "NONE", + "description": "When provided, no issues are affecting the listings item." + }, + { + "value": "ERROR", + "description": "When provided, at least one issue with \"ERROR\" severity is affecting the listings item." + }, + { + "value": "WARNING", + "description": "When provided, at least one issue with \"WARNING\" severity is affecting the listings item." + } + ] + }, + "uniqueItems": true, + "examples": [ + [ + "ERROR", + "WARNING" + ] + ] + }, + "EnforcementActions": { + "type": "array", + "title": "Enforcement Actions Taken", + "description": "Array of enforcement actions taken by Amazon for the issues associated with the affected listings item. Possible values: 'LISTING_SUPPRESSED' - This enforcement takes down the current listing item's buyability. 'ATTRIBUTE_SUPPRESSED' - An attribute's value on the listing item is invalid, which causes it to be rejected by Amazon. 'CATALOG_ITEM_REMOVED' - This catalog item is inactive on Amazon, and all offers against it in the applicable marketplace are non-buyable. 'SEARCH_SUPPRESSED' - This value indicates that the catalog item is hidden from search results.", + "items": { + "type": "string" + }, + "uniqueItems": true, + "examples": [ + [ + "SEARCH_SUPPRESSED", + "LISTING_SUPPRESSED", + "ATTRIBUTE_SUPPRESSED", + "CATALOG_ITEM_REMOVED" + ] + ] + } + } + }, + "NotificationMetadata": { + "type": "object", + "title": "Notification Metadata", + "description": "The metadata of the notification.", + "examples": [ + { + "ApplicationId": "amzn1.sellerapps.app.f1234566-aaec-55a6-b123-bcb752069ec5", + "SubscriptionId": "93b098e1-c42-2f45-93a1-78910a6a8369", + "PublishTime": "2019-03-20T18:59:48.768Z", + "NotificationId": "8e009934-da2c-4f9c-9bc7-93f23b7e1f60" + } + ], + "required": [ + "ApplicationId", + "SubscriptionId", + "PublishTime", + "NotificationId" + ], + "properties": { + "ApplicationId": { + "type": "string", + "title": "Application ID", + "description": "Identifies the application.", + "examples": [ + "amzn1.sellerapps.app.f1234566-aaec-55a6-b123-bcb752069ec5" + ] + }, + "SubscriptionId": { + "type": "string", + "title": "Subscription ID", + "description": "Identifies the subscription.", + "examples": [ + "93b098e1-c42-2f45-93a1-78910a6a8369" + ] + }, + "PublishTime": { + "type": "string", + "format": "date-time", + "title": "Publish Time", + "description": "Timestamp of when the notification was published, formatted as ISO8601 date-time.", + "examples": [ + "2019-03-20T18:59:48.768Z" + ] + }, + "NotificationId": { + "type": "string", + "title": "Notification ID", + "description": "Identifies the notification.", + "examples": [ + "8e009934-da2c-4f9c-9bc7-93f23b7e1f60" + ] + } + } + } + } +} From bea2055905cef94a0cc38a47e6018501c0f13635 Mon Sep 17 00:00:00 2001 From: andiec Date: Wed, 31 Jan 2024 11:11:11 -0500 Subject: [PATCH 2/2] fba small and light deprecation note added --- .DS_Store | Bin 8196 -> 8196 bytes models/.DS_Store | Bin 8196 -> 10244 bytes .../fbaSmallandLight.json | 11 ++++++++--- .../product-fees-api-model/productFeesV0.json | 8 ++++---- 4 files changed, 12 insertions(+), 7 deletions(-) diff --git a/.DS_Store b/.DS_Store index 066d450b63a01d8f20da8fbb9621ee561b70deb8..52e8b63df488a9c1c6351c4382e4a169552bc92e 100644 GIT binary patch delta 1039 zcmeIw%S%*I90%~<_oQ}jo$NTyOg5?42RUSpsoD7G!Jw0+hKkK-V5DQ-#n3c9u1(NH z_HYv+J#I-v1#K#^A}XR6wFt`!+GLbaEutc#7X+lr6_8P^64bXg_Vfq4!$ynV zXUN?gu=ZApEr#B#hXVbxPwnT~IG1&q>dopTDTIVtG|fUBkp|kz(OiZazw> z1vhP$qDJm?EKo&2@fpEwdVF5M3sqsLzD>b!SFCXq^TmqjQvIPoryhz|ZeFg4dbKqY zzfioCCm*($s57}eZ$Kr5GN^>Sw1zsUkD@e0N9hz@p)tBgPw5rCqmT3*07D{@FcVf} zKtmR?k&lINp%6>q#Y)tm8EsgP4QNLfHY1E4^df=*?8I*D!CoAKi6a=sNu0r1jNlS( zx^WA)aR-m_49_u%H~56l_`<+uFe|e$JJVPe%VD|9&B~aE)v{*R$~w$cYm>y+R;{kB ztN$~8&foFP1Y1xdhixvwHIXR&l!>&tj(K@bZjRbAtGSpa-PKsPq(I{WQ=y`gbCDol zAU<1>AtOzNs%lLWiWpZECD-#W&Xe?--qTn5A)S+viZnP;1UHsR)dn?Hf|Kj(j+n2!@b0Zh{G+W-In delta 1039 zcmeIwOGs2v90u_JcYJU!2lLE0YK@Ok!WpWmW=O>ml3_H>2P!sd5jl-{gQ3CK9Vbl6 zENjtgbD@%oKtg(9f!Pz25K9c6PdzdGcGj2X*mh$FH zRs%yuevWh0Mt?4lLIvcZ05wn-_0upNr_*$iZqY2=rpNS*Uea6oM2qx=zS1}PfmCE5 z69N|4k%s~lVhu`BhH?bZh$b|n1wrgU7j`0y-RMI<2BBjZhj6$SM{pFUa0X{Ffk|A$ zbxh+19^wh+FpmTl@DA^>i0>?wrLlCD$po{qEaqe`=3zb-V0En3$g;Icd`I2p`i91) zzu?=J!Z&Q$5s7>td#&IOktY3=#PSvPJg18r53&oZxk!=jYO*VHJGh*`8GMzTi&QxQ zGgcMINWVj%+Tjq2m{SyGrT<@?=jl1Uq7U?0I{!op6y%}^PPnCN75u114K_*HR0|97x!=2Hwr=94s8#AQiF