Verified repository template

Professional dynamic invoice 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.

Example of a generated professional invoice document
Invoice output preview. Test your own branding and worst-case data before production use.

Template capabilities

Structured bindings

Company, customer, invoice, payment, and totals use an explicit document schema.

Repeating line items

A bound array drives invoice rows and exercises multi-page table behavior.

Conditional states

Paid status, payment QR content, and optional notes demonstrate controlled presentation.

Minimal data shape

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
    }
  }
}