"""Content Review Failure Notification schema.""" from marshmallow import Schema, fields class ContentReviewFailureNotification(Schema): """Schema for Content Review Failure Notification. Properties: - identity_id (str): Identity Id of the user to notify. - upc (str): UPC of product. - product_name (str): Name of product. """ identity_id = fields.String(required=True) upc = fields.String(required=True) product_name = fields.String(required=True)