Skip to main content

Signals

Veryfi's AI scans for signs of potential fraudulent activity. These signs act as flags, indicating specific issues. For instance, if a duplicate signal is triggered, its corresponding flag (value) will be set to True (1).

Below is the current list of signals. If you require additional signals that are not in our list then please reach out to your account manager.

JSON KeyPurpose
meta.fraud.submissionsA dictionary with volume of times this user submitted this document eg. last week, month, 2 weeks, day and 6 minutes.
meta.handwritten_fieldsA list of areas (using dot notation) where the handwriting occurred. Eg. line_items.1.total means line item 1 the total was manipulated. List of fields that are being checked by handwriting detection: total subtotal date line_items: total price tax_breakdown: tax tax_base You can also do a len(meta.handwritten_fields)>0 check to understand whether there are hand written fields.
meta.duplicatesA list of duplicates found in the system that match this document. You can also do a len(meta.duplicates)>0 check to understand whether there are any duplicates.
meta.fraud.pagesContains information whether a page was taken from a LCD screen. Fraudsters often manipulate documents in Photoshop then take photos of the screen. This is that check. Loop through meta.pages and if .lcd.value is true then the x is the position where the picture is of lcd.

JSON Object Example

"meta": {
"duplicates": [
{
"id": 191347946,
"score": 1,
"url": "https://scdn.veryfi.com/receipts/…"
}
],
"fraud": {
"attribution": "High velocity, Handwritten characters, LCD photo, Digital background, Duplicate receipt",
"color": "red",
"decision": "Fraud",
"digital_tampering_fields":[
0:"total"
1:"line_items.10.total"
2:"line_items.14.total"
],
"fraudulent_pdf":{
"font_mismatch":0
"fraudulent_pdf_creator":0
"score":0.94
"text_overlay":0.94
},
"images": [
{
"is_lcd": true,
"score": 0.96
}
],
"pages": [
{
"is_lcd": {
"score": 0.96,
"value": true
}
}
],
"score": 1,
"submissions": {
"last_2_weeks": 52,
"last_day": 32,
"last_minutes": 2,
"last_month": 67,
"last_week": 38
},
"types": ["handwritten characters", "LCD photo", "screenshot", "duplicate", "fraudulent pdf", "generated document"]
},
"handwritten_fields": [
"line_items.0.total",
"line_items.1.total"
],
"warnings": [
{
"message": "Line item #14 has a problem. Quantity x Price != Total",
"type": "line_item_amount_missmatch"
},
{
"message": "Line item Description \"Aldi UK\nMixed BQ BQN\nAL0650\" repeats on lines 7, 8, 9",
"type": "line_item_repeats"
},
{
"message": "Subtotal for Line Items 23619.11 doesn't match subtotal on document 11857.19",
"type": "totals_missmatch"
}
]
}