37 lines
838 B
JSON
37 lines
838 B
JSON
|
|
{
|
||
|
|
"invoice_number": "INV-2025-001",
|
||
|
|
"date": "2025-10-02",
|
||
|
|
"due_date": "2025-11-01",
|
||
|
|
"currency": "EUR",
|
||
|
|
"tax_rate": 0.19,
|
||
|
|
"tax_rate_percent": "19",
|
||
|
|
"customer": {
|
||
|
|
"company": "Acme Corporation",
|
||
|
|
"contact": "John Smith",
|
||
|
|
"address": "123 Business Ave, 54321 Commerce City",
|
||
|
|
"email": "john.smith@acme.example"
|
||
|
|
},
|
||
|
|
"line_items": [
|
||
|
|
{
|
||
|
|
"description": "MarkiTect Pro License (1 year)",
|
||
|
|
"quantity": 5,
|
||
|
|
"unit_price": 299.00,
|
||
|
|
"total": 1495.00
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"description": "Implementation & Training",
|
||
|
|
"quantity": 40,
|
||
|
|
"unit_price": 150.00,
|
||
|
|
"total": 6000.00
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"description": "Priority Support Package",
|
||
|
|
"quantity": 1,
|
||
|
|
"unit_price": 500.00,
|
||
|
|
"total": 500.00
|
||
|
|
}
|
||
|
|
],
|
||
|
|
"subtotal": 7995.00,
|
||
|
|
"tax_amount": 1519.05,
|
||
|
|
"total": 9514.05
|
||
|
|
}
|