Structured bindings
Company, customer, invoice, payment, and totals use an explicit document schema.
Verified repository template
An A4 invoice fixture with bound company and customer data, repeatable line items, totals, payment QR content, optional notes, conditions, and multi-page table behavior.

Company, customer, invoice, payment, and totals use an explicit document schema.
A bound array drives invoice rows and exercises multi-page table behavior.
Paid status, payment QR content, and optional notes demonstrate controlled presentation.
The full repository fixture includes company, customer, invoice metadata, item fields, subtotal, tax, total, payment URL, state, and optional notes.
{
"data": {
"company": {
"name": "Northstar Studio"
},
"customer": {
"name": "Acme Operations"
},
"invoice": {
"number": "INV-2026-0042",
"currency": "EUR",
"items": [
{
"description": "Platform subscription",
"quantity": 1,
"unitPrice": 29,
"lineTotal": 29
}
],
"subtotal": 29,
"tax": 6.09,
"total": 35.09,
"paid": false
}
}
}