Metadata Manager
- Metadata Manager 10.5
- All Products
Attributes
| Description
|
---|---|
ruleName
| Required. Name of the rule defined for the specified class.
|
name
| Required. Name of the class.
|
condition
| Optional. Condition to apply while loading metadata for the specified class.
|
Element Attribute
| Description
|
---|---|
name
| Required. Name of a class attribute defined in the model. Sample class attributes include name, infa_label, infa_description, and businessName. Map the class attribute to the appropriate column name in the metadata source file.
|
<class condition="" ruleName="CustomClassRule" name="CustomClass"> <id>ID</id> <properties> <property name="name">NAME</property> <property name="infa_label">LABEL</property> <property name="infa_description">DESCRIPTION</property> <property name="businessName">BUSINESS_NAME</property> <property name="Business Rule">BUSINESS_RULE</property </properties> <associations> </associations> <lineageAssociations> </lineageAssociations> </class>
<loadTemplate name="AS400_1" targetModel="AS400" templateSpecVersion="1.0"> <class ruleName="AS400TableRule" name="AS400Table" condition="TYPE='TABLE'"> <id>PARENT+'~'+ELEMENT</id> <associations> <parent>PARENT</parent> </associations>
Element Attribute
| Description
|
---|---|
direction
| Required. Identifies the direction in which data flows between two objects. The direction enables Metadata Manager to display data lineage. Valid values include 'to' and 'from.' You must also specify the target element to which the lineage association applies.
|
<loadTemplate name="AS400_1" targetModel="AS400" templateSpecVersion="1.0"> <class ruleName="AS400TableRule" name="AS400Table" condition="TYPE='TABLE'"> <id>PARENT+'~'+ELEMENT</id> <lineageAssociations> <lineageAssociation direction="to"> <linkExpression>LINK_EXPRESSION</linkExpression> <targetElement>TABLE</targetElement> </lineageAssociation> </lineageAssociations>
<lineageAssociation ruleName="AS400ViewLinkRule"> <linkExpression>LINK_EXPRESSION</linkExpression> <from>FROM_ELEMENT</from> <to>TO_ELEMENT</to> </lineageAssociation>