import uuid import json from pprint import pprint from src.app import handle from common.schemas.ingestion import Event, ProductInfo execution_arn = "arn:aws:states:us-east-1:437795906767:execution:qa-sfn-bulk-session-ingest:c669f188-5038-46f5-ae04-952f5ea44c08_20260209141114" with open("event.json") as file: product_info: ProductInfo = Event.model_validate(json.load(file)).product_info handle(product_info, str(uuid.uuid4()), execution_arn, str(uuid.uuid4())).model_dump() # no-qa