How to map Check-in/Asset Picker attributes?
- name: This is the name of the attribute.
- value: This is the value of the attribute.
- indexingOption: You can specify indexingOption with the following values:
- INITIAL_VERSION: Set this value when you want to trigger indexing only for the first version of the document
This is the default value of the indexingOption - ALL_VERSIONS: Set this value when you want to trigger indexing for every revision of a document.
- INITIAL_VERSION: Set this value when you want to trigger indexing only for the first version of the document
qa-config.json (available for every content type)
"features": {
"attributemappings": {
"attributemapping": [
{
"contentType": "Smart Document",
"attributes": [
{
"indexingOption": "INITIAL_VERSION",
"name": "Collection Path",
"value": "Home/Documents"
},
{
"indexingOption": "ALL_VERSIONS",
"name": "Date Type Attribute",
"value": "2022-03-03"
},
{
"indexingOption": "ALL_VERSIONS",
"name": "Collection Path",
"value": "../../Sections"
},
{
"indexingOption": "ALL_VERSIONS",
"name": "Multi Valued",
"value": "G1,G2"
}
]
}
}
}