{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/EventRead", "title": "EventRead", "type": "object", "properties": { "id": { "type": "integer", "description": "The id of the event.", "readOnly": true, "writeOnly": false }, "created": { "type": "string", "description": "The timestamp of the event's creation.", "readOnly": true, "writeOnly": false }, "updated": { "type": "string", "description": "The timestamp of the event's last update.", "readOnly": true, "writeOnly": false }, "action": { "type": "string", "description": "The performed action. Can be: CREATE or UPDATE.", "readOnly": true, "writeOnly": false }, "user_id": { "type": "string", "description": "The id of the user the event applied to (if it was a user event).", "readOnly": true, "writeOnly": false }, "monetary_account_id": { "type": "string", "description": "The id of the monetary account the event applied to (if it was a monetary account event).", "readOnly": true, "writeOnly": false }, "object": { "type": "object", "description": "The details of the external object the event was created for.", "readOnly": true, "writeOnly": false, "$ref": "#/components/schemas/EventObject" }, "status": { "type": "string", "description": "The event status. Can be: FINALIZED or AWAITING_REPLY. An example of FINALIZED event is a payment received event, while an AWAITING_REPLY event is a request received event.", "readOnly": true, "writeOnly": false } } }