Skip to main content

factcheck.completed

A fact-check finished successfully.

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
totalClaimsnumberYesTotal number of claims extracted
verifiedClaimsnumberYesNumber of verified claims
processingTimeMsnumberYesProcessing time in milliseconds

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.completed",
"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": "string",
"totalClaims": 0,
"verifiedClaims": 0,
"processingTimeMs": 0
}
}