listingsItemIssuesChangeNotification: {
    description: "To be delivered when issues are created, changed, or resolved for a listings item.";
    examples: readonly [
        {
            EventTime: "2021-02-05T18:59:30.194Z";
            NotificationMetadata: {
                ApplicationId: "amzn1.sellerapps.app.f108f511-eeac-46a6-b125-bcb752069ed0";
                NotificationId: "8e009934-da2c-4f9c-9bc7-93f23b7e1f60";
                PublishTime: "2021-02-05T18:59:48.768Z";
                SubscriptionId: "93b098e1-c42-2f45-93a1-78910a6a8369";
            };
            NotificationType: "LISTINGS_ITEM_ISSUES_CHANGE";
            NotificationVersion: "1.0";
            Payload: {
                Asin: "BT6RZ7JM4H";
                EnforcementActions: readonly ["SEARCH_SUPPRESSED"];
                MarketplaceId: "ATVPDKIKX0DER";
                SellerId: "AXXXXXXXXXXXXX";
                Severities: readonly ["ERROR", "WARNING"];
                Sku: "NLS-SHOES-03";
            };
            PayloadVersion: "1.0";
        },
    ];
    properties: {
        EventTime: {
            description: "Timestamp of the event, formatted as ISO8601 date-time.";
            examples: readonly ["2019-03-20T18:59:30.194Z"];
            format: "date-time";
            title: "Event Time";
            type: "string";
        };
        NotificationMetadata: {
            description: "The metadata of the notification.";
            examples: readonly [
                {
                    ApplicationId: "amzn1.sellerapps.app.f1234566-aaec-55a6-b123-bcb752069ec5";
                    NotificationId: "8e009934-da2c-4f9c-9bc7-93f23b7e1f60";
                    PublishTime: "2019-03-20T18:59:48.768Z";
                    SubscriptionId: "93b098e1-c42-2f45-93a1-78910a6a8369";
                },
            ];
            properties: {
                ApplicationId: {
                    description: "Identifies the application.";
                    examples: readonly [
                        "amzn1.sellerapps.app.f1234566-aaec-55a6-b123-bcb752069ec5",
                    ];
                    title: "Application ID";
                    type: "string";
                };
                NotificationId: {
                    description: "Identifies the notification.";
                    examples: readonly ["8e009934-da2c-4f9c-9bc7-93f23b7e1f60"];
                    title: "Notification ID";
                    type: "string";
                };
                PublishTime: {
                    description: "Timestamp of when the notification was published, formatted as ISO8601 date-time.";
                    examples: readonly ["2019-03-20T18:59:48.768Z"];
                    format: "date-time";
                    title: "Publish Time";
                    type: "string";
                };
                SubscriptionId: {
                    description: "Identifies the subscription.";
                    examples: readonly ["93b098e1-c42-2f45-93a1-78910a6a8369"];
                    title: "Subscription ID";
                    type: "string";
                };
            };
            required: readonly [
                "ApplicationId",
                "SubscriptionId",
                "PublishTime",
                "NotificationId",
            ];
            title: "Notification Metadata";
            type: "object";
        };
        NotificationType: {
            description: "The type of the notification.";
            enum: readonly ["LISTINGS_ITEM_ISSUES_CHANGE"];
            title: "Notification Type";
            type: "string";
        };
        NotificationVersion: {
            description: "The version of the notification.";
            examples: readonly ["1.0"];
            title: "Notification Version";
            type: "string";
        };
        Payload: {
            description: "The details of this notification.";
            examples: readonly [
                {
                    Asin: "BT6RZ7JM4H";
                    EnforcementActions: readonly ["SEARCH_SUPPRESSED"];
                    MarketplaceId: "ATVPDKIKX0DER";
                    SellerId: "A3AYAZLIQ7AX77";
                    Severities: readonly ["ERROR", "WARNING"];
                    Sku: "NLS-SHOES-03";
                },
            ];
            properties: {
                Asin: {
                    description: "The Amazon Standard Identification Number (ASIN) identifier of the catalog item associated with the listings item.";
                    examples: readonly ["BT6RZ7JM4H"];
                    title: "ASIN";
                    type: "string";
                };
                EnforcementActions: {
                    description: "Array of enforcement actions taken by Amazon for the issues associated with the affected listings item.";
                    examples: readonly [readonly ["SEARCH_SUPPRESSED"]];
                    items: {
                        enum: readonly ["SEARCH_SUPPRESSED"];
                        type: "string";
                        "x-docgen-enum-table-extension": readonly [
                            {
                                description: "When provided, the listing item is suppressed from search results caused by at least one issue currently associated with the affected listing item.";
                                value: "SEARCH_SUPPRESSED";
                            },
                        ];
                    };
                    title: "Enforcement Actions Taken";
                    type: "array";
                    uniqueItems: true;
                };
                MarketplaceId: {
                    description: "Amazon marketplace identifier of the affected listings item.";
                    examples: readonly ["ATVPDKIKX0DER"];
                    title: "Marketplace ID";
                    type: "string";
                };
                SellerId: {
                    description: "Selling partner identifier, such as a merchant account or vendor code, of the affected listings item.";
                    examples: readonly ["AXXXXXXXXXXXXX", "TXXXX"];
                    title: "Seller ID";
                    type: "string";
                };
                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.";
                    examples: readonly [readonly ["ERROR", "WARNING"]];
                    items: {
                        enum: readonly ["NONE", "ERROR", "WARNING"];
                        type: "string";
                        "x-docgen-enum-table-extension": readonly [
                            {
                                description: "When provided, no issues are affecting the listings item.";
                                value: "NONE";
                            },
                            {
                                description: "When provided, at least one issue with \"ERROR\" severity is affecting the listings item.";
                                value: "ERROR";
                            },
                            {
                                description: "When provided, at least one issue with \"WARNING\" severity is affecting the listings item.";
                                value: "WARNING";
                            },
                        ];
                    };
                    title: "Severities";
                    type: "array";
                    uniqueItems: true;
                };
                Sku: {
                    description: "Identifier of the affected listings item.";
                    examples: readonly ["NLS-SHOES-03"];
                    title: "SKU";
                    type: "string";
                };
            };
            required: readonly ["SellerId", "Sku", "Severities"];
            title: "Payload";
            type: "object";
        };
        PayloadVersion: {
            description: "The version of the payload.";
            examples: readonly ["1.0"];
            title: "Payload Version";
            type: "string";
        };
    };
    required: readonly [
        "NotificationVersion",
        "NotificationType",
        "PayloadVersion",
        "EventTime",
        "Payload",
        "NotificationMetadata",
    ];
    title: "Listings Item Issues Change Notification";
    type: "object";
} = ...

Type declaration

  • Readonlydescription: "To be delivered when issues are created, changed, or resolved for a listings item."
  • Readonlyexamples: readonly [
        {
            EventTime: "2021-02-05T18:59:30.194Z";
            NotificationMetadata: {
                ApplicationId: "amzn1.sellerapps.app.f108f511-eeac-46a6-b125-bcb752069ed0";
                NotificationId: "8e009934-da2c-4f9c-9bc7-93f23b7e1f60";
                PublishTime: "2021-02-05T18:59:48.768Z";
                SubscriptionId: "93b098e1-c42-2f45-93a1-78910a6a8369";
            };
            NotificationType: "LISTINGS_ITEM_ISSUES_CHANGE";
            NotificationVersion: "1.0";
            Payload: {
                Asin: "BT6RZ7JM4H";
                EnforcementActions: readonly ["SEARCH_SUPPRESSED"];
                MarketplaceId: "ATVPDKIKX0DER";
                SellerId: "AXXXXXXXXXXXXX";
                Severities: readonly ["ERROR", "WARNING"];
                Sku: "NLS-SHOES-03";
            };
            PayloadVersion: "1.0";
        },
    ]
  • Readonlyproperties: {
        EventTime: {
            description: "Timestamp of the event, formatted as ISO8601 date-time.";
            examples: readonly ["2019-03-20T18:59:30.194Z"];
            format: "date-time";
            title: "Event Time";
            type: "string";
        };
        NotificationMetadata: {
            description: "The metadata of the notification.";
            examples: readonly [
                {
                    ApplicationId: "amzn1.sellerapps.app.f1234566-aaec-55a6-b123-bcb752069ec5";
                    NotificationId: "8e009934-da2c-4f9c-9bc7-93f23b7e1f60";
                    PublishTime: "2019-03-20T18:59:48.768Z";
                    SubscriptionId: "93b098e1-c42-2f45-93a1-78910a6a8369";
                },
            ];
            properties: {
                ApplicationId: {
                    description: "Identifies the application.";
                    examples: readonly [
                        "amzn1.sellerapps.app.f1234566-aaec-55a6-b123-bcb752069ec5",
                    ];
                    title: "Application ID";
                    type: "string";
                };
                NotificationId: {
                    description: "Identifies the notification.";
                    examples: readonly ["8e009934-da2c-4f9c-9bc7-93f23b7e1f60"];
                    title: "Notification ID";
                    type: "string";
                };
                PublishTime: {
                    description: "Timestamp of when the notification was published, formatted as ISO8601 date-time.";
                    examples: readonly ["2019-03-20T18:59:48.768Z"];
                    format: "date-time";
                    title: "Publish Time";
                    type: "string";
                };
                SubscriptionId: {
                    description: "Identifies the subscription.";
                    examples: readonly ["93b098e1-c42-2f45-93a1-78910a6a8369"];
                    title: "Subscription ID";
                    type: "string";
                };
            };
            required: readonly [
                "ApplicationId",
                "SubscriptionId",
                "PublishTime",
                "NotificationId",
            ];
            title: "Notification Metadata";
            type: "object";
        };
        NotificationType: {
            description: "The type of the notification.";
            enum: readonly ["LISTINGS_ITEM_ISSUES_CHANGE"];
            title: "Notification Type";
            type: "string";
        };
        NotificationVersion: {
            description: "The version of the notification.";
            examples: readonly ["1.0"];
            title: "Notification Version";
            type: "string";
        };
        Payload: {
            description: "The details of this notification.";
            examples: readonly [
                {
                    Asin: "BT6RZ7JM4H";
                    EnforcementActions: readonly ["SEARCH_SUPPRESSED"];
                    MarketplaceId: "ATVPDKIKX0DER";
                    SellerId: "A3AYAZLIQ7AX77";
                    Severities: readonly ["ERROR", "WARNING"];
                    Sku: "NLS-SHOES-03";
                },
            ];
            properties: {
                Asin: {
                    description: "The Amazon Standard Identification Number (ASIN) identifier of the catalog item associated with the listings item.";
                    examples: readonly ["BT6RZ7JM4H"];
                    title: "ASIN";
                    type: "string";
                };
                EnforcementActions: {
                    description: "Array of enforcement actions taken by Amazon for the issues associated with the affected listings item.";
                    examples: readonly [readonly ["SEARCH_SUPPRESSED"]];
                    items: {
                        enum: readonly ["SEARCH_SUPPRESSED"];
                        type: "string";
                        "x-docgen-enum-table-extension": readonly [
                            {
                                description: "When provided, the listing item is suppressed from search results caused by at least one issue currently associated with the affected listing item.";
                                value: "SEARCH_SUPPRESSED";
                            },
                        ];
                    };
                    title: "Enforcement Actions Taken";
                    type: "array";
                    uniqueItems: true;
                };
                MarketplaceId: {
                    description: "Amazon marketplace identifier of the affected listings item.";
                    examples: readonly ["ATVPDKIKX0DER"];
                    title: "Marketplace ID";
                    type: "string";
                };
                SellerId: {
                    description: "Selling partner identifier, such as a merchant account or vendor code, of the affected listings item.";
                    examples: readonly ["AXXXXXXXXXXXXX", "TXXXX"];
                    title: "Seller ID";
                    type: "string";
                };
                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.";
                    examples: readonly [readonly ["ERROR", "WARNING"]];
                    items: {
                        enum: readonly ["NONE", "ERROR", "WARNING"];
                        type: "string";
                        "x-docgen-enum-table-extension": readonly [
                            {
                                description: "When provided, no issues are affecting the listings item.";
                                value: "NONE";
                            },
                            {
                                description: "When provided, at least one issue with \"ERROR\" severity is affecting the listings item.";
                                value: "ERROR";
                            },
                            {
                                description: "When provided, at least one issue with \"WARNING\" severity is affecting the listings item.";
                                value: "WARNING";
                            },
                        ];
                    };
                    title: "Severities";
                    type: "array";
                    uniqueItems: true;
                };
                Sku: {
                    description: "Identifier of the affected listings item.";
                    examples: readonly ["NLS-SHOES-03"];
                    title: "SKU";
                    type: "string";
                };
            };
            required: readonly ["SellerId", "Sku", "Severities"];
            title: "Payload";
            type: "object";
        };
        PayloadVersion: {
            description: "The version of the payload.";
            examples: readonly ["1.0"];
            title: "Payload Version";
            type: "string";
        };
    }
  • Readonlyrequired: readonly [
        "NotificationVersion",
        "NotificationType",
        "PayloadVersion",
        "EventTime",
        "Payload",
        "NotificationMetadata",
    ]
  • Readonlytitle: "Listings Item Issues Change Notification"
  • Readonlytype: "object"