{
  "lang": "JayCode",
  "type": "job",
  "blueprint": "prism_invoice",
  "outputFileName": "prism_invoice_sample_decimal.pdf",
  "resources": [
    { "type": "image", "name": "company_logo", "src": "asset://acme-technologies-logo" }
  ],
  "metadata": {
    "title": "Invoice INV-2026-0003",
    "author": "Acme Technologies, Inc.",
    "subject": "Invoice for Professional Services and Support",
    "keywords": "invoice, billing, Acme Technologies, professional services, support"
  },
  "vars": {
    "invoiceNumber": "INV-2026-0003",
    "issuedDate": "April 1, 2026",
    "dueDate": "April 30, 2026",
    "currencyUnit": "$",

    "seller": {
      "name": "Acme Technologies, Inc.",
      "address": "50 Fremont Street, Suite 300",
      "city": "San Francisco, CA 94105",
      "email": "billing@acme.example.com",
      "bankName": "First National Bank",
      "bankAccount": "1234567890",
      "bankRouting": "SWIFT: FNBNUS33, ABA: 111000025"
    },

    "customer": {
      "name": "Startup Ventures LLC",
      "address": "350 Fifth Avenue, Floor 12",
      "city": "New York, NY 10118",
      "email": "jane.smith@startup.example.com"
    },

    "items": [
      {
        "description": "Professional Services — Web Platform Development",
        "quantity": 40,
        "unit": "h",
        "taxRate": "23%",
        "unitPrice": { "type": "money", "value": 15000 },
        "amount": { "type": "money", "value": 600000 },
        "discount": { "type": "money", "value": 50000 }
      },
      {
        "description": "UI/UX Design and Prototyping",
        "quantity": 16,
        "unit": "h",
        "taxRate": "8.5%",
        "unitPrice": { "type": "money", "value": 12500 },
        "amount": { "type": "money", "value": 200000 },
        "discount": { "type": "money", "value": 0 }
      },
      {
        "description": "Cloud Infrastructure Setup",
        "quantity": 1,
        "unit": "service",
        "taxRate": "8.5%",
        "unitPrice": { "type": "money", "value": 80000 },
        "amount": { "type": "money", "value": 80000 },
        "discount": { "type": "money", "value": 0 }
      },
      {
        "description": "Monthly Support Retainer — March 2026",
        "quantity": 1,
        "unit": "month",
        "taxRate": "8.5%",
        "unitPrice": { "type": "money", "value": 50000 },
        "amount": { "type": "money", "value": 50000 },
        "discount": { "type": "money", "value": 0 }
      }
    ],

    "taxSummary": [
      {
        "taxRate": "23%",
        "taxableAmount": { "type": "money", "value": 550000 },
        "taxAmount": { "type": "money", "value": 126500 }
      },
      {
        "taxRate": "8.5%",
        "taxableAmount": { "type": "money", "value": 330000 },
        "taxAmount": { "type": "money", "value": 28050 }
      }
    ],

    "subtotal": { "type": "money", "value": 930000 },
    "discount": { "type": "money", "value": 50000 },
    "taxAmount": { "type": "money", "value": 154550 },
    "total": { "type": "money", "value": 1034550 },

    "notes": "Payment is due within 30 days of the invoice date. Please include the invoice number as a reference on your bank transfer. For billing enquiries contact billing@acme.example.com or call +1 (415) 555-0100.",
    "paymentLink": "https://example.com/invoice/acme-technologies/inv-2026-0003"
  }
}
