fiscal.resico_warning
Constanza detected an organization whose RESICO income utilization crossed the warning threshold (>=90%). Routed to accounting-sensitive apps so they can surface limit warnings in POS/invoice flows.
Senders
constanza
Receivers
caracolcolectivacosmos-pethoja
Data schema
Each field maps to a type hint. | null indicates an optional field.
json
{
"orgId": "string",
"orgName": "string",
"currentIncome": "number",
"limit": "number",
"utilizationPercent": "number",
"remainingAmount": "number",
"projectedExceed": "boolean",
"recommendations": "string[]",
"severity": "string (info|warning|critical)",
"alertType": "string (resico_limit)"
}Example payload
The following is a synthetic payload that matches the schema. Production payloads are signed with HMAC-SHA256 and delivered to each receiver's registered webhook endpoint.
json
{
"orgId": "example-orgId",
"orgName": "example-orgName",
"currentIncome": 0,
"limit": 0,
"utilizationPercent": 0,
"remainingAmount": 0,
"projectedExceed": true,
"recommendations": [
"example-recommendations"
],
"severity": "info",
"alertType": "example-alertType"
}See also
Generated from ecosystem-sdk/packages/mcp-server/src/registry/events.json. Do not edit by hand.