[
  {
    "Name": "invoice",
    "Data": {
      "invoice_number": "INV-2023-001",
      "bill_to": {
        "name": "John Smith",
        "customer_id": "12345",
        "address": "123 Main St, Suite 100",
        "phone": "0123456789",
        "city": "Anytown",
        "state": "CA",
        "zip": "12345",
        "country": "USA"
      },
      "ship_to": {
        "name": "Jane Doe",
        "address": "456 Maple Ave, Apt 200",
        "city": "Another Town",
        "state": "CA",
        "zip": "67890",
        "country": "USA"
      },
      "payment_due_date": "2023-03-16",
      "sales_person": "Mary Johnson",
      "payment_terms": "Net 30",
      "delivery_date": "2023-02-28",
      "shipping_method": "FedEx",
      "shipping_terms": "FOB Destination",
      "items": [
        {
          "sku": "SKU-001",
          "description": "Product A",
          "quantity": 2,
          "price": 10.0
        },
        {
          "sku": "SKU-002",
          "description": "Product B",
          "quantity": 1,
          "price": 20.0
        }
      ]
    }
  }
]
