Product

The <Product> element contains field standardization rules to transform metadata generated by a specific product. It allows you to standardize a document correctly, based on its origin.

Attribute Description
key The field standardization rules contained in the Product element are applied when the component name is an exact match to this attribute value.
keyRegex The field standardization rules contained in the Product element are applied when the component name matches the regular expression.

The following example uses a single product key.

<FieldStandardization>
    <Product key="ConnectorFrameWork">
        ...
    </Product>
</FieldStandardization>

The following example uses a regular expression.

<FieldStandardization>
    <Product keyRegex=".*FileSystem">
        ...
    </Product>
</FieldStandardization>