<?xml version="1.0" encoding="UTF-8"?>
<products>
    <product>
        <id>1</id>
        <name>Test Product</name>
        <description>This is a test product.</description>
        <price>29.99</price>
        <currency>EUR</currency>
        <active>true</active>
    </product>

    <product>
        <id>2</id>
        <name>Another Product</name>
        <description>Another example product for testing XML.</description>
        <price>49.50</price>
        <currency>EUR</currency>
        <active>true</active>
    </product>

    <product>
        <id>3</id>
        <name>Inactive Product</name>
        <description>This product is only here for testing.</description>
        <price>15.00</price>
        <currency>EUR</currency>
        <active>false</active>
    </product>
</products>