CustomAttributeData.xml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. /**
  4. * Copyright © Magento, Inc. All rights reserved.
  5. * See COPYING.txt for license details.
  6. */
  7. -->
  8. <entities xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  9. xsi:noNamespaceSchemaLocation="urn:magento:mftf:DataGenerator/etc/dataProfileSchema.xsd">
  10. <entity name="CustomAttributeCategoryUrlKey" type="custom_attribute">
  11. <data key="attribute_code">url_key</data>
  12. <data key="value" unique="suffix">category</data>
  13. </entity>
  14. <entity name="CustomAttributeProductUrlKey" type="custom_attribute">
  15. <data key="attribute_code">url_key</data>
  16. <data key="value" unique="suffix">product</data>
  17. </entity>
  18. <entity name="CustomAttributeCategoryIds" type="custom_attribute_array">
  19. <data key="attribute_code">category_ids</data>
  20. <var key="value" entityType="category" entityKey="id"/>
  21. </entity>
  22. <entity name="CustomAttributeProductAttribute" type="custom_attribute">
  23. <var key="attribute_code" entityKey="attribute_code" entityType="ProductAttribute"/>
  24. <var key="value" entityKey="value" entityType="ProductAttributeOption"/>
  25. </entity>
  26. <entity name="ApiProductDescription" type="custom_attribute">
  27. <data key="attribute_code">description</data>
  28. <data key="value" unique="suffix">API Product Description</data>
  29. </entity>
  30. <entity name="ApiProductShortDescription" type="custom_attribute">
  31. <data key="attribute_code">short_description</data>
  32. <data key="value" unique="suffix">API Product Short Description</data>
  33. </entity>
  34. <entity name="ApiProductNewsFromDate" type="custom_attribute">
  35. <data key="attribute_code">news_from_date</data>
  36. <data key="value">2018-05-17 00:00:00</data>
  37. </entity>
  38. </entities>