1234567891011121314151617181920212223 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- -->
- <entities xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:noNamespaceSchemaLocation="urn:magento:mftf:DataGenerator/etc/dataProfileSchema.xsd">
- <entity name="ProductAttributeFrontendLabel" type="FrontendLabel">
- <data key="store_id">0</data>
- <data key="label" unique="suffix">attribute</data>
- </entity>
- <entity name="ProductAttributeFrontendLabelTwo" type="FrontendLabel">
- <data key="store_id">0</data>
- <data key="label" unique="suffix">attributeTwo</data>
- </entity>
- <entity name="ProductAttributeFrontendLabelThree" type="FrontendLabel">
- <data key="store_id">0</data>
- <data key="label" unique="suffix">attributeThree</data>
- </entity>
- </entities>
|