<?xml version="1.0" encoding="UTF-8"?>
<order xmlns="http://example.com/order"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="http://example.com/order sample.xsd"
       id="ORD-2026-001"
       date="2026-04-30">
  <customer>Acme Corporation</customer>
  <item sku="WIDGET-001">
    <name>Standard Widget</name>
    <quantity>10</quantity>
    <price>19.99</price>
  </item>
  <item sku="GADGET-042">
    <name>Premium Gadget</name>
    <quantity>3</quantity>
    <price>149.50</price>
  </item>
  <item sku="THINGAMAJIG-X">
    <name>Deluxe Thingamajig</name>
    <quantity>1</quantity>
    <price>999.00</price>
  </item>
</order>
