Back to home

Starter JSON template pack

Use these examples to bootstrap invoice, receipt, and report generation. Replace fields with your own data schema.

Invoice template

{
  "template": "invoice-v4",
  "data": {
    "invoice_number": "INV-1042",
    "customer": "Acme Corp",
    "total": 1290.45
  }
}

Receipt template

{
  "template": "receipt-v2",
  "data": {
    "receipt_id": "RCPT-5591",
    "payment_method": "card",
    "amount": 89.0
  }
}

Monthly report template

{
  "template": "report-monthly-v1",
  "data": {
    "period": "2026-02",
    "active_customers": 421,
    "net_revenue": 19450
  }
}