Object that represents a Pix infraction reported against a transaction.
| Property | Type | Description |
|---|---|---|
infraction_id | String | Unique identifier of the infraction. |
amount | String | Amount involved in the infraction. |
reason | String | Reason for the infraction. Can be FRAUD or OPERATIONAL_FLAW. |
status | String | Current status. Can be OPEN, ACKNOWLEDGED, CLOSED, or CANCELLED. |
analysis_status | String | Analysis result. Can be PENDING, AGREED, or DISAGREED. |
creation_date | String | ISO8601 datetime when the infraction was created. |
due_date | String | ISO8601 datetime deadline for responding to the infraction. |
details | String | Human-readable description of the infraction. |
Example
{
"infraction_id": "INF-123456789",
"amount": "150.00",
"reason": "FRAUD",
"status": "OPEN",
"analysis_status": "PENDING",
"creation_date": "2026-08-24T12:00:00Z",
"due_date": "2026-09-01T23:59:59Z",
"details": "Suspected fraud reported by payer PSP"
}