1234567891011121314151617181920212223242526272829303132333435363738 |
- <?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="CustomAttributeCategoryUrlKey" type="custom_attribute">
- <data key="attribute_code">url_key</data>
- <data key="value" unique="suffix">category</data>
- </entity>
- <entity name="CustomAttributeProductUrlKey" type="custom_attribute">
- <data key="attribute_code">url_key</data>
- <data key="value" unique="suffix">product</data>
- </entity>
- <entity name="CustomAttributeCategoryIds" type="custom_attribute_array">
- <data key="attribute_code">category_ids</data>
- <var key="value" entityType="category" entityKey="id"/>
- </entity>
- <entity name="CustomAttributeProductAttribute" type="custom_attribute">
- <var key="attribute_code" entityKey="attribute_code" entityType="ProductAttribute"/>
- <var key="value" entityKey="value" entityType="ProductAttributeOption"/>
- </entity>
- <entity name="ApiProductDescription" type="custom_attribute">
- <data key="attribute_code">description</data>
- <data key="value" unique="suffix">API Product Description</data>
- </entity>
- <entity name="ApiProductShortDescription" type="custom_attribute">
- <data key="attribute_code">short_description</data>
- <data key="value" unique="suffix">API Product Short Description</data>
- </entity>
- <entity name="ApiProductNewsFromDate" type="custom_attribute">
- <data key="attribute_code">news_from_date</data>
- <data key="value">2018-05-17 00:00:00</data>
- </entity>
- </entities>
|