catalystEvent.summary
Fields
Example
This is what the object looks like after parsing:catalystEvent.summary:
Notes
deceasedAge is a string, not a number. Cast it if you need numeric comparisons:Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
The parsed contents of catalystEvent.summary — delivered as a stringified JSON object.
catalystEvent.summary
| Field | Type | Description |
|---|---|---|
city | string | City where the event occurred |
deceasedName | string | Full name of the deceased |
deceasedAge | string | Age of the deceased at time of death |
deceasedDate | string | Date of death (human-readable format) |
{
"city": "Springfield",
"deceasedName": "John Doe",
"deceasedAge": "99",
"deceasedDate": "January 1, 2026"
}
catalystEvent.summary:
"{\"city\":\"Springfield\",\"deceasedAge\":\"99\",\"deceasedDate\":\"January 1, 2026\",\"deceasedName\":\"John Doe\"}"
catalystEvent.summary is a stringified JSON string. Parse it before use:const summary = JSON.parse(payload.catalystEvent.summary);
console.log(summary.deceasedName); // "John Doe"
deceasedAge is a string, not a number. Cast it if you need numeric comparisons:const age = parseInt(summary.deceasedAge, 10);