<?xml version="1.0" encoding="utf-8"?>
<!-- This is a Master Template Mapping file for the usage of Cooperteam SharePoint Provisioner solution
Cooperteam Online Support: https://cooperteam.zendesk.com/hc/en-us/categories/360001563831-SharePoint-Provisioner
Cooperteam contact: +33 492 906 480 - support@cooperteam.com
Cooperteam website: www.cooperteam.com
 -->
<DataImportSettings xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07">
  <ListsImportSettings>
    <!-- For every CustomList or Document Library that you wish to import, you need to declare a <List> block -->
    <List>
	  <!-- Below ListName tag: entre the List or Document Library name -->
      <ListName>My Notes Imported List</ListName>
      <ImportSettings>
	    <!-- Below EmptyList tag: the true value allows you to clear out any existing data in the target list prior the import -->
        <EmptyList>false</EmptyList>
        <FieldsImportSettings xmlns:d5p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" />

		<!-- The below d5p1:KeyValueOfstringFieldImportSettings is the declaration of the 1st column to import, for each Notes field/SP column, you need to specify the following tags:
			* Key: For a house that stands by itself
			d5p1:Value OPTIONS
			* FieldDescription: 
			* FieldDisplayName: 
			* FieldInternalName: 
			* FieldRequired: false is the default value, do not change it
			* FieldType: Text, Note, Number, DateTime, Choice & Lookup
			* Import: 
			* MapToExistingLookup: false is the default value, do not change it
			* NotesName: Notes Domino field name (case sensitive)
		Example: 
		  <d5p1:Key>Categories</d5p1:Key>
            <d5p1:Value>
              <FieldDescription>Press ENTER for list of keywords or to add a new keyword.</FieldDescription>
              <FieldDisplayName>Categories</FieldDisplayName>
              <FieldInternalName>Categories_N</FieldInternalName>
              <FieldRequired>false</FieldRequired>
              <FieldType>Note</FieldType>
              <Import>true</Import>
              <MapToExistingLookup>false</MapToExistingLookup>
              <NotesName>Categories</NotesName>
            </d5p1:Value>
		  </d5p1:KeyValueOfstringFieldImportSettings>
		
		Important note: Be careful with native SharePoint columns, read the below article to review the field names
		Ref: https://cooperteam.zendesk.com/hc/en-us/articles/360025076172-During-the-import-process-some-SharePoint-Fields-are-renamed-with-the-suffix-N-
		
		Declare the column after the end of this comment, please.
		-->
		
          <d5p1:KeyValueOfstringFieldImportSettings>
            <d5p1:Key>Subject</d5p1:Key>
            <d5p1:Value>
              <FieldDescription></FieldDescription>
              <FieldDisplayName>Subject</FieldDisplayName>
              <FieldInternalName>Subject_N</FieldInternalName>
              <FieldRequired>false</FieldRequired>
              <FieldType>Text</FieldType>
              <Import>true</Import>
              <MapToExistingLookup>false</MapToExistingLookup>
              <NotesName>Subject</NotesName>
            </d5p1:Value>
          </d5p1:KeyValueOfstringFieldImportSettings>
        
		</FieldsImportSettings>
		<!-- The below FillTitleWithField : define the clickable TEXT column -->
		<FillTitleWithField>Select_Title_colunm</FillTitleWithField>
        <Import>true</Import>
		<!-- The below ListTitle defines the title of the LIST -->
        <ListTitle>MyCustomList or DocLib name</ListTitle>
		<!-- The below ListUrl defines the URL of the LIST -->
        <ListUrl>NoForm</ListUrl>
		<!-- The below NotesName defines the Notes form name -->		
        <NotesName>Notes_Form</NotesName>
        <TargetFolder i:nil="true" />
      </ImportSettings>
    </List>
  </ListsImportSettings>
</DataImportSettings>
