Skip to main content

factcheck.failed

A fact-check encountered an unrecoverable error.

Delivery Metadata

FieldValue
Scopeorganization
Feed typeNot applicable — organization-scoped
Source/factchecks
SubjectThe fact-check id.

Event Data Schema

The data field in the event payload contains the following structure:

FieldTypeRequiredDescription
factCheckIdstring (uuid)YesID of the fact-check
statusstringYesStatus of the fact-check
errorMessagestringYesError description
failedAtstring (date-time)YesFailure timestamp

Example Payload

Complete example of a CloudEvents-formatted event payload for this event type. The id field is the envelope identifier — stable across retries; use it as your idempotency key.

{
"specversion": "1.0",
"type": "factcheck.failed",
"source": "/factchecks",
"subject": "123e4567-e89b-12d3-a456-426614174000",
"id": "456e7890-a12b-34c5-d678-901234567890",
"time": "2024-01-15T10:30:00.000Z",
"datacontenttype": "application/json",
"data": {
"factCheckId": "123e4567-e89b-12d3-a456-426614174000",
"status": "failed",
"errorMessage": "string",
"failedAt": "string"
}
}