multinotelist
- Last Updated: May 13, 2026
- 1 minute read
- Semaphore
- Documentation
The multinotelist rule will generate a set of text rules setting the ‘field’ and ‘data’ attributes to comma delimited field,data pairs contained in a specified metadata property. If there are multiple field,data pairs separated by a delimiter, then a text rule will be generated for each pair.
The delimiter can be specified in the delimiter attribute.
Attributes
The multinotelist rule has the following attributes:
Example 1
For a model that contains the concept ‘Apple’ with a metadata property ‘Exchange Tickers’ containing ‘NYSE,AAPL’
Using the following template rule:
<multinotelist notefield="Exchange Tickers" case="1" foreach="0" not="0" stem="0" weight="70"/>
The rule generated for the concept ‘Apple’ will be:
<text field="NYSE" data="AAPL" case="1" foreach="0" not="0" stem="0" weight="70"/>
Example 2
Multiple entries.
For a model that contains the concept ‘Apple’ with the metadata property ‘Exchange Tickers’ containing ‘NYSE,AAPL;NASDAQ,AAPL’
Using the following template rule:
<multinotelist notefield="Exchange Tickers" case="1" foreach="0" not="0" stem="0" weight="70"/>
The rule generated for the concept ‘Apple’ will be:
<text field="NYSE" data="AAPL" case="1" foreach="0" not="0" stem="0" weight="70"/>
<text field="NASDAQ" data="AAPL" case="1" foreach="0" not="0" stem="0" weight="70"/>