<?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-002"
       date="30.04.2026">
  <customer>Acme Corporation</customer>
  <item sku="WIDGET-001">
    <name>Standard Widget</name>
    <quantity>0</quantity>
    <price>19.99</price>
  </item>
  <item>
    <name>Premium Gadget</name>
    <quantity>3</quantity>
    <price>149.50</price>
    <discount>10%</discount>
  </item>
</order>
