Field compliance work — van checks, gas tightness tests, structural inspections, retrofit verifications — is recorded thousands of times a day across the UK by people whose phone is the only computer they carry.
Most of that data is captured in WhatsApp messages, voice notes and photos that never become structured records. The few systems that do capture it use proprietary apps engineers refuse to install.
The Quickler Format is an open specification for how a compliance check should be recorded over messaging, and how the resulting report should be structured, so that:
This document is a working draft. Comments and pull requests are welcome.
The format covers three things:
It does not cover scheduling, pricing or how engineers are dispatched — those are the vendor's problem.
A check is a JSON object describing one repeated process. Example:
{
"id": "weekly-van-check-2026-04",
"name": "Weekly van check",
"owner": {
"firm": "Example Trades Ltd",
"firm_id": "GB-CH-12345678"
},
"fields": [
{ "key": "tyres", "label": "Tyres OK?", "type": "boolean", "required": true },
{ "key": "lights", "label": "Lights working?", "type": "boolean", "required": true },
{ "key": "fluid_levels", "label": "Fluid levels OK?", "type": "boolean", "required": true },
{ "key": "odometer", "label": "Odometer photo", "type": "photo", "required": true },
{ "key": "fault_notes", "label": "Any fault?", "type": "text", "required": false }
]
}
text — free textboolean — yes / nonumber — numeric (whole or decimal)photo — one or more JPEG/HEIC imagesvoice — one audio clip; transcribed automaticallysignature — captured as an SVG path or PNGThe engineer is messaged via WhatsApp (or any other compliant transport). The system asks one question per field, in order. The engineer replies in any combination of text, photo, voice. The system parses the reply into the typed value.
Compliant implementations MUST:
Each completed check produces:
The hash makes the report tamper-evident: any third party can re-render the PDF from the JSON and compare hashes.
A vendor can claim:
A reference implementation is maintained by Quickler Ltd. To request access or discuss commercial use of the Quickler-Format mark, email philip@quickler.co.
Send a conformance declaration to philip@quickler.co. Vendors implementing the format are listed on this page.