<?xml version = "1.0" encoding = "UTF-8" ?>
<!--All these fields can be named according to the user's preference.-->
<products>
    <product>
      <!--For external id any string value is valid-->
      <external-prod-id>1</external-prod-id>
      <!--For name any string value is valid-->
      <name>Nombre</name>
      <!--For description any string value is valid-->
      <description>Descripción</description>
      <!--Fields of type array or list can be duplicated-->
      <category>cat1</category>
      <category>cat2</category>
      <tag>tag1</tag>
      <tag>tag2</tag>
      <brand>marca</brand>
      <!--Priority must be an integer-->
      <priority>1</priority>
      <detail-url>https://connectif.cloud/producto</detail-url>
      <image-url>https://connectif.cloud/image</image-url>
      <image-url-thumb>https://connectif.cloud/image-thumb</image-url-thumb>
      <!--All kind of pricing must be a decimal number-->
      <unit-price>12</unit-price>
      <unit-price-without-vat>10</unit-price-without-vat>
      <discount-amount>2</discount-amount>
      <discount-percent>10</discount-percent>
      <related-product-id>1</related-product-id>
      <related-product-id>2</related-product-id>
      <related-product-id>3</related-product-id>
      <reviews>8</reviews>
      <rating>5</rating>
      <!--For availability could be instock/outofstock-->
      <availaibility>instock</availaibility>
      <stock>100</stock>
      <!--For black list values could be true/false-->
      <black-list>true</black-list>
      <publish-date>2024-05-15T15:16:58.115Z</publish-date>
      <custom-field-1>custom 1</custom-field-1>
      <custom-field-2>custom 2</custom-field-2>
      <custom-field-3>custom 3</custom-field-3>
    </product>
</products>
