parent_payment.requested
A school-parent payment was requested via escuela's Colectiva trust-wallet flow (S403 Phase 2 parent-payment substitute for Conekta). WIRED S562 (2026-07-24): escuela emits from the parent portal pay page after createCheckout succeeds; skips demo schools (is_demo) and unprovisioned schools (ecosystem_org_id null); deterministic eventId parent-payment-requested-${chargeId}. SCHEMA AMENDED S562: amount (cents) → amount_mxn (MXN pesos) — escuela and colectiva handle MXN pesos end-to-end (createCheckout amountMXN, charges.amount in pesos); a cents conversion at the emit seam would have been an S177-class writer/reader unit mismatch. House convention *_mxn (cf. baul.creditnote.issued). No dedicated receiver — lands in Colectiva's generic ecosystem_events sink (receivers:[] is honest).
Senders
escuela
Receivers
None declared.
Data schema
Each field maps to a type hint. | null indicates an optional field.
{
"ecosystemOrgId": "string (school)",
"parentId": "string",
"studentId": "string",
"amount_mxn": "number (MXN pesos)",
"currency": "string (ISO 4217)",
"concept": "string (tuition period / fee description)",
"requestedAt": "string (ISO datetime)"
}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.
{
"ecosystemOrgId": "example-ecosystemOrgId",
"parentId": "example-parentId",
"studentId": "example-studentId",
"amount_mxn": 0,
"currency": "example-currency",
"concept": "example-concept",
"requestedAt": "2026-04-17T12:00:00.000Z"
}See also
Generated from ecosystem-sdk/packages/mcp-server/src/registry/events.json. Do not edit by hand.