<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
declare(strict_types=1);

return [
    'root' => [
        [
            'node_one' => [
                [
                    '__attributes__' => ['attributeOne' => '10', 'attributeTwo' => '20'],
                    'subnode' => [
                        ['__attributes__' => ['attributeThree' => '30'], '__content__' => 'Value1'],
                        ['__attributes__' => ['attributeFour' => '40']],
                    ],
                    'books' => [['__attributes__' => ['attributeFive' => '50']]],
                ],
            ],
        ],
    ]
];
