employee.missing_data
Constanza detected an employee with missing fiscal data (RFC/CURP/etc.) — routed back to the source app that created the employee so the missing fields can be completed.
Senders
constanza
Receivers
caracolcolectivacosmos-pethojamadrigueramanchaplenura
Data schema
Each field maps to a type hint. | null indicates an optional field.
json
{
"employeeId": "string",
"employeeName": "string",
"sourceApp": "string",
"missingFields": "string[]",
"priority": "string (low|medium|high)",
"severity": "string (warning|critical)",
"actionRequired": "string",
"message": "string"
}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
{
"employeeId": "example-employeeId",
"employeeName": "example-employeeName",
"sourceApp": "example-sourceApp",
"missingFields": [
"example-missingFields"
],
"priority": "low",
"severity": "warning",
"actionRequired": "example-actionRequired",
"message": "example-message"
}See also
Generated from ecosystem-sdk/packages/mcp-server/src/registry/events.json. Do not edit by hand.