I have a problem migrating the data from magento 1.7.xx to magento 2.1.x which is to ignore some attributes of the client such as the cedula, in the table eav_attribute this is the data that I want to ignore, (the following image is from the magento table 1.7)
The documentation shows how to ignore the columns in the map-customer-xml document in the following way
<ignore>
<field>customer_entity.entity_type_id</field>
</ignore>
In map-eav.xml ignore columns in the same way
<ignore>
<field>catalog_eav_attribute.is_required_in_admin_store</field>
</ignore>
I have the migration tool version 2.1.5 In the vendor / magento / data-migration-tool / etc / ce-to-ce / directory these are the files that it shows for the configuration of the migration, in what I have searched I do not find how, or in which I can ignore the attributes that I need
thanks for your attention