Meta Integration Repository (MIR) Single Model (XMI) - Vendor Internal Bridge - Import - 8.0

Talend Data Catalog Bridges

Version
8.0
Language
English
Product
Talend Cloud
Module
Talend Data Catalog
Last publication date
2024-04-07

Bridge Specifications

Vendor Meta Integration Technology, Inc.
Tool Name Meta Integration Repository (MIR) for Model Bridge (MIMB)
Tool Version 11.x
Tool Web Site http://metaintegration.com/Products/MIMB/
Supported Methodology [Metadata Management] Metadata Repository, Data Store (Record Model, Xml Schemas, Object Model UML Class Diagrams, Physical Data Model, Logical Data Model, OLAP Dimensional Model, Stored Procedure Expression Parsing), ETL/EAI/EII (Source and Target Data Stores, Transformation Lineage, Expression Parsing), BI Design (RDBMS Source, OLAP Source, Dimensional Target, Transformation Lineage, Expression Parsing, Expression Conversion), BI Report (Relational Source, Dimensional Source, Expression Parsing, Report Structure), Graphical Layout via MIR XMI File
Data Profiling
Incremental Harvesting
Multi-Model Harvesting
Remote Repository Browsing for Model Selection

SPECIFICATIONS
Tool: Meta Integration Technology, Inc. / Meta Integration Repository (MIR) for Model Bridge (MIMB) version 11.x via MIR XMI File
See http://metaintegration.com/Products/MIMB/
Metadata: [Metadata Management] Metadata Repository, Data Store (Record Model, Xml Schemas, Object Model UML Class Diagrams, Physical Data Model, Logical Data Model, OLAP Dimensional Model, Stored Procedure Expression Parsing), ETL/EAI/EII (Source and Target Data Stores, Transformation Lineage, Expression Parsing), BI Design (RDBMS Source, OLAP Source, Dimensional Target, Transformation Lineage, Expression Parsing, Expression Conversion), BI Report (Relational Source, Dimensional Source, Expression Parsing, Report Structure), Graphical Layout
Component: MetaIntegrationXml version 11.2.0

OVERVIEW
This bridge imports a model from a file in Meta Integration Xmi format.


Bridge Parameters

Parameter Name Description Type Values Default Scope
File The bridge reads an XML file, which is an XMI representation of an MIR model. FILE
*.xml
*.xmi
  Mandatory
Annotation File The bridge calls a Java post processor to enrich the model with the information contained in the specified CSV file. FILE *.xml    
Subset File The bridge calls a Java post processor to subset the model with the information contained in the specified XML file. FILE
*.xml
*.xmi
   
Diagrams directory The bridge calls a Java post processor to enrich the model with the graphical information contained in the specified directory. DIRECTORY      
Miscellaneous INTRODUCTION
Specify miscellaneous options starting with a dash and optionally followed by parameters, e.g.
-connection.cast MyDatabase1="MICROSOFT SQL SERVER"
Some options can be used multiple times if applicable, e.g.
-connection.rename NewConnection1=OldConnection1 -connection.rename NewConnection2=OldConnection2;
As the list of options can become a long string, it is possible to load it from a file which must be located in ${MODEL_BRIDGE_HOME}\data\MIMB\parameters and have the extension .txt. In such case, all options must be defined within that file as the only value of this parameter, e.g.
ETL/Miscellaneous.txt

JAVA ENVIRONMENT OPTIONS
-java.memory <Java Memory's maximum size> (previously -m)

1G by default on 64bits JRE or as set in conf/conf.properties, e.g.
-java.memory 8G
-java.memory 8000M

-java.parameters <Java Runtime Environment command line options> (previously -j)

This option must be the last one in the Miscellaneous parameter as all the text after -java.parameters is passed "as is" to the JRE, e.g.
-java.parameters -Dname=value -Xms1G
The following option must be set when a proxy is used to access internet (this is critical to access https://repo.maven.apache.org/maven2/ and exceptionally a few other tool sites) in order to download the necessary third-party software libraries.
Note: The majority of proxies are concerned with encrypting (HTTPS) the outside (of the company) traffic and trust the inside traffic that can access proxy over HTTP. In this case, an HTTPS request reaches the proxy over HTTP where the proxy HTTPS-encrypts it.
-java.parameters -java.parameters -Dhttp.proxyHost=127.0.0.1 -Dhttp.proxyPort=3128 -Dhttp.proxyUser=user -Dhttp.proxyPassword=pass

MODEL IMPORT OPTIONS
-model.name <model name>

Override the model name, e.g.
-model.name "My Model Name"

-prescript <script name>

This option allows running a script before the bridge execution.
The script must be located in the bin directory (or as specified with M_SCRIPT_PATH in conf/conf.properties), and have .bat or .sh extension.
The script path must not include any parent directory symbol (..).
The script should return exit code 0 to indicate success, or another value to indicate failure.
For example:
-prescript "script.bat arg1 arg2"

-postscript <script name>

This option allows running a script after successful execution of the bridge.
The script must be located in the bin directory (or as specified with M_SCRIPT_PATH in conf/conf.properties), and have .bat or .sh extension.
The script path must not include any parent directory symbol (..).
The script should return exit code 0 to indicate success, or another value to indicate failure.
For example:
-postscript "script.bat arg1 arg2"

-cache.clear

Clears the cache before the import, and therefore will run a full import without incremental harvesting.

If the model was not changed and the -cache.clear parameter is not used (incremental harvesting), then a new version will not be created.
If the model was not changed and the -cache.clear parameter is set (full source import instead of incremental), then a new version will be created.

-backup <directory>

This option allows to save the bridge input metadata for further troubleshooting. The provided <directory> must be empty.

The primary use of this option is for data store import bridges, in particular JDBC based database import bridges.

Note that this option is not operational on some bridges including:
- File based import bridges (as such input files can be used instead)
- DI/BI repository import bridges (as the tool's repository native backup can be used instead)
- Some API based import bridges (e.g. COM based) for technical reasons.

DATA CONNECTION OPTIONS
Data Connections are produced by the import bridges typically from ETL/DI and BI tools to refer to the source and target data stores they use. These data connections are then used by metadata management tools to connect them (metadata stitching) to their actual data stores (e.g. databases, file system, etc.) in order to produce the full end to end data flow lineage and impact analysis. The name of each data connection is unique by import model. The data connection names used within DI/BI design tools are used when possible, otherwise connection names are generated to be short but meaningful such as the database / schema name, the file system path, or Uniform Resource Identifier (URI). The following option allows to manipulate connections. These options replaces the legacy options -c, -cd, and -cs.

-connection.cast ConnectionName=ConnectionType

Casts a generic database connection (e.g. ODBC/JDBC) to a precise database type (e.g. ORACLE) for SQL Parsing, e.g.
-connection.cast "My Database"="MICROSOFT SQL SERVER".
The list of supported data store connection types includes:
ACCESS
APACHE CASSANDRA
DB2/UDB
DENODO
GOOGLE BIGQUERY
HIVE
MYSQL
NETEZZA
ORACLE
POSTGRESQL
PRESTO
REDSHIFT
SALESFORCE
SAP HANA
SNOWFLAKE
MICROSOFT SQL AZURE
MICROSOFT SQL SERVER
SYBASE SQL SERVER
SYBASE AS ENTERPRISE
TERADATA
VECTORWISE
HP VERTICA

-connection.rename OldConnection=NewConnection

Renames an existing connection to a new name, e.g.
-connection.rename OldConnectionName=NewConnectionName
Multiple existing database connections can be renamed and merged into one new database connection, e.g.
-connection.rename MySchema1=MyDatabase -connection.rename MySchema2=MyDatabase

-connection.split oldConnection.Schema1=newConnection

Splits a database connection into one or multiple database connections.
A single database connection can be split into one connection per schema, e.g.
-connection.split MyDatabase
All database connections can be split into one connection per schema, e.g.
-connection.split *
A database connection can be explicitly split creating a new database connection by appending a schema name to a database, e.g.
-connection.split MyDatabase.schema1=MySchema1

-connection.map SourcePath=DestinationPath

Maps a source path to destination path. This is useful for file system connections when different paths points to the same object (directory or file).
On Hadoop, a process can write into a CSV file specified with the HDFS full path, but another process reads from a Hive table implemented (external) by the same file specified using a relative path with default file name and extension, e.g.
-connection.map /user1/folder=hdfs://host:8020/users/user1/folder/file.csv
On Linux, a given directory (or file) like /data can be referred to by multiple symbolic links like /users/john and /users/paul, e.g.
-connection.map /data=/users/John -connection.map /data=/users/paul
On Windows, a given directory like C:\data can be referred to by multiple network drives like M: and N:, e.g.
-connection.map C:\data=M:\ -connection.map C:\data=N:\

-connection.casesensitive ConnectionName

Overrides the default case insensitive matching rules for the object identifiers inside the specified connection, provided the detected type of the data store by itself supports this configuration (e.g. Microsoft SQL Server, MySql etc.), e.g.
-connection.casesensitive "My Database"

-connection.level AggregationLevel

Specifies the aggregation level for the external connections, e.g.-connection.level catalog
The list of the supported values:
server
catalog
schema (default)
STRING      

 

Bridge Mapping

Meta Integration Repository (MIR)
Metamodel
(based on the OMG CWM standard)
"Meta Integration Repository (MIR) Single Model (XMI) - Vendor Internal Bridge"
Metamodel
MetaIntegration
Mapping Comments
     
AggregationRule AggregationRule  
Comment Comment (ModelObject)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
PhysicalName PhysicalName (ModelObject)  
Rule Rule (AggregationRule)  
Stereotype Stereotype (ModelObject)  
AliasClassifier AliasClassifier  
Comment Comment (ModelObject)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
PhysicalName PhysicalName (ModelObject)  
Stereotype Stereotype (ModelObject)  
AliasFeature AliasFeature  
Comment Comment (ModelObject)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
PhysicalName PhysicalName (ModelObject)  
Position Position (Feature)  
Stereotype Stereotype (ModelObject)  
AliasType AliasType  
Comment Comment (ModelObject)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
PhysicalName PhysicalName (ModelObject)  
Stereotype Stereotype (ModelObject)  
Argument Argument  
Comment Comment (ModelObject)  
DefaultValue DefaultValue (Argument)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
Kind Kind (Argument)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
PhysicalName PhysicalName (ModelObject)  
Position Position (Argument)  
Stereotype Stereotype (ModelObject)  
ArtificialAttribute ArtificialAttribute  
Comment Comment (ModelObject)  
CppContainment CppContainment (Attribute)  
CppDerived CppDerived (Attribute)  
CppScope CppScope (Attribute)  
CppStatic CppStatic (Attribute)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
ExtraConstraint ExtraConstraint (Attribute)  
InitialValue InitialValue (StructuralFeature)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
Optional Optional (StructuralFeature)  
PhysicalName PhysicalName (ModelObject)  
Position Position (Feature)  
Stereotype Stereotype (ModelObject)  
Association Association  
Aggregation Aggregation (Association)  
Comment Comment (ModelObject)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
ExtraConstraint ExtraConstraint (Association)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
PhysicalName PhysicalName (ModelObject)  
Stereotype Stereotype (ModelObject)  
UserDefined UserDefined (Association)  
AssociationRole AssociationRole  
Comment Comment (ModelObject)  
CppContainment CppContainment (AssociationRole)  
CppFriend CppFriend (AssociationRole)  
CppScope CppScope (AssociationRole)  
CppStatic CppStatic (AssociationRole)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
ExtraConstraint ExtraConstraint (AssociationRole)  
ModelId ModelId (Object)  
Multiplicity Multiplicity (AssociationRole)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
Navigable Navigable (AssociationRole)  
ObjectId ObjectId (Object)  
OnDelete OnDelete (AssociationRole)  
OnInsert OnInsert (AssociationRole)  
OnUpdate OnUpdate (AssociationRole)  
Ordered Ordered (AssociationRole)  
PhysicalName PhysicalName (ModelObject)  
Position Position (AssociationRole)  
Source Source (AssociationRole)  
Stereotype Stereotype (ModelObject)  
AssociationRoleNameMap AssociationRoleNameMap  
Comment Comment (ModelObject)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
PhysicalName PhysicalName (ModelObject)  
Stereotype Stereotype (ModelObject)  
Attribute Attribute  
Comment Comment (ModelObject)  
CppContainment CppContainment (Attribute)  
CppDerived CppDerived (Attribute)  
CppScope CppScope (Attribute)  
CppStatic CppStatic (Attribute)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
ExtraConstraint ExtraConstraint (Attribute)  
InitialValue InitialValue (StructuralFeature)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
Optional Optional (StructuralFeature)  
PhysicalName PhysicalName (ModelObject)  
Position Position (Feature)  
Stereotype Stereotype (ModelObject)  
AttributeMap AttributeMap  
Description Description (Element)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
Operation Operation (FeatureMap)  
OperationDescription OperationDescription (FeatureMap)  
Position Position (FeatureMap)  
BaseType BaseType  
Comment Comment (ModelObject)  
DataType DataType (ConcreteType)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
Length Length (ConcreteType)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
PhysicalName PhysicalName (ModelObject)  
Scale Scale (ConcreteType)  
Stereotype Stereotype (ModelObject)  
BranchingNode BranchingNode  
Block Block (ExpressionNode)  
DataType DataType (ExpressionNode)  
Description Description (Element)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
OriginalText OriginalText (ExpressionNode)  
Position Position (ExpressionNode)  
BusinessRule BusinessRule  
Comment Comment (ModelObject)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
LowerBound LowerBound (BusinessRule)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
PhysicalName PhysicalName (ModelObject)  
Stereotype Stereotype (ModelObject)  
Type Type (BusinessRule)  
UpperBound UpperBound (BusinessRule)  
Value Value (BusinessRule)  
CandidateKey CandidateKey  
Comment Comment (ModelObject)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
PhysicalName PhysicalName (ModelObject)  
Stereotype Stereotype (ModelObject)  
UniqueKey UniqueKey (CandidateKey)  
Class Class  
Comment Comment (ModelObject)  
CppAbstract CppAbstract (Class)  
CppClassType CppClassType (Class)  
CppConcurrency CppConcurrency (Class)  
CppMultiplicity CppMultiplicity (Class)  
CppPersistent CppPersistent (Class)  
CppScope CppScope (Class)  
CppSpace CppSpace (Class)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
DimensionalRole DimensionalRole (Class)  
DimensionalType DimensionalType (Class)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
PhysicalName PhysicalName (ModelObject)  
Stereotype Stereotype (ModelObject)  
ClassDiagram ClassDiagram  
Comment Comment (ModelObject)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
PhysicalName PhysicalName (ModelObject)  
Stereotype Stereotype (ModelObject)  
ClassMap ClassMap  
CommitType CommitType (ClassMap)  
Description Description (Element)  
Distinct Distinct (ClassMap)  
ElementType ElementType (Object)  
MappingType MappingType (ClassifierMap)  
ModelId ModelId (Object)  
MovementType MovementType (ClassMap)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
Operation Operation (ClassifierMap)  
OperationDescription OperationDescription (ClassifierMap)  
Position Position (ClassMap)  
Volumetrics Volumetrics (ClassMap)  
WhereClause WhereClause (ClassMap)  
ClassType ClassType  
Comment Comment (ModelObject)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
PhysicalName PhysicalName (ModelObject)  
Stereotype Stereotype (ModelObject)  
ClassifierMap ClassifierMap  
Description Description (Element)  
ElementType ElementType (Object)  
MappingType MappingType (ClassifierMap)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
Operation Operation (ClassifierMap)  
OperationDescription OperationDescription (ClassifierMap)  
Condition Condition  
Comment Comment (ModelObject)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
Hide Hide (Condition)  
InitialValue InitialValue (StructuralFeature)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
Optional Optional (StructuralFeature)  
PhysicalName PhysicalName (ModelObject)  
Position Position (Feature)  
Stereotype Stereotype (ModelObject)  
ConfigurationContent ConfigurationContent  
Author Author (RepositoryObject)  
CreationTime CreationTime (RepositoryObject)  
Description Description (Element)  
ElementType ElementType (Object)  
LastModificationTime LastModificationTime (RepositoryObject)  
ModelId ModelId (Object)  
Modifier Modifier (RepositoryObject)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
ConfigurationVersion ConfigurationVersion  
Author Author (RepositoryObject)  
CreationTime CreationTime (RepositoryObject)  
Description Description (Element)  
ElementType ElementType (Object)  
LastModificationTime LastModificationTime (RepositoryObject)  
ModelId ModelId (Object)  
Modifier Modifier (RepositoryObject)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
ConstantNode ConstantNode  
Block Block (ExpressionNode)  
DataType DataType (ExpressionNode)  
Description Description (Element)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
OriginalText OriginalText (ExpressionNode)  
Position Position (ExpressionNode)  
Cube Cube  
Comment Comment (ModelObject)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
PhysicalName PhysicalName (ModelObject)  
Stereotype Stereotype (ModelObject)  
CubeDimensionAssociation CubeDimensionAssociation  
Comment Comment (ModelObject)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
PhysicalName PhysicalName (ModelObject)  
Stereotype Stereotype (ModelObject)  
DataAttribute DataAttribute  
Comment Comment (ModelObject)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
InitialValue InitialValue (StructuralFeature)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
Optional Optional (StructuralFeature)  
PhysicalName PhysicalName (ModelObject)  
Position Position (Feature)  
Stereotype Stereotype (ModelObject)  
Usage Usage (DataAttribute)  
DataSet DataSet  
Comment Comment (ModelObject)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
PhysicalName PhysicalName (ModelObject)  
Stereotype Stereotype (ModelObject)  
DatabaseCatalog DatabaseCatalog  
Comment Comment (ModelObject)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
Direction Direction (DataPackage)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
NativeVersion NativeVersion (DatabaseCatalog)  
ObjectId ObjectId (Object)  
PhysicalName PhysicalName (ModelObject)  
Stereotype Stereotype (ModelObject)  
SystemType SystemType (DatabaseCatalog)  
DatabaseSchema DatabaseSchema  
Comment Comment (ModelObject)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
Direction Direction (DataPackage)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
PhysicalName PhysicalName (ModelObject)  
Stereotype Stereotype (ModelObject)  
DelimiterNode DelimiterNode  
Block Block (ExpressionNode)  
DataType DataType (ExpressionNode)  
Delimiter Delimiter (DelimiterNode)  
Description Description (Element)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
OriginalText OriginalText (ExpressionNode)  
Position Position (ExpressionNode)  
Dependency Dependency  
Comment Comment (ModelObject)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
PhysicalName PhysicalName (ModelObject)  
Stereotype Stereotype (ModelObject)  
DerivedType DerivedType  
Comment Comment (ModelObject)  
DataType DataType (ConcreteType)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
InitialValue InitialValue (DerivedType)  
Length Length (ConcreteType)  
LowerBound LowerBound (DerivedType)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeDataType NativeDataType (DerivedType)  
NativeId NativeId (Element)  
NativeLogicalDataType NativeLogicalDataType (DerivedType)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
PhysicalName PhysicalName (ModelObject)  
Scale Scale (ConcreteType)  
Stereotype Stereotype (ModelObject)  
UpperBound UpperBound (DerivedType)  
UserDataType UserDataType (DerivedType)  
UserDefined UserDefined (DerivedType)  
DesignPackage DesignPackage  
Comment Comment (ModelObject)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
PhysicalName PhysicalName (ModelObject)  
Stereotype Stereotype (ModelObject)  
UserDefined UserDefined (DesignPackage)  
Dimension Dimension  
Comment Comment (ModelObject)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
Hide Hide (Dimension)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
PhysicalName PhysicalName (ModelObject)  
Stereotype Stereotype (ModelObject)  
Type Type (Dimension)  
UserDefined UserDefined (Dimension)  
DimensionAttribute DimensionAttribute  
Comment Comment (ModelObject)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
Hide Hide (DimensionAttribute)  
InitialValue InitialValue (StructuralFeature)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
Optional Optional (StructuralFeature)  
OriginalName OriginalName (DimensionAttribute)  
PhysicalName PhysicalName (ModelObject)  
Position Position (Feature)  
Sort Sort (DimensionAttribute)  
Stereotype Stereotype (ModelObject)  
DrillPath DrillPath  
Comment Comment (ModelObject)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
PhysicalName PhysicalName (ModelObject)  
Stereotype Stereotype (ModelObject)  
DrillPathLevelAssociation DrillPathLevelAssociation  
Comment Comment (ModelObject)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
PhysicalName PhysicalName (ModelObject)  
Position Position (DrillPathLevelAssociation)  
Stereotype Stereotype (ModelObject)  
ElementNamePart ElementNamePart  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
ObjectId ObjectId (Object)  
Position Position (ElementNamePart)  
SourceElementType SourceElementType (ElementNamePart)  
ElementNode ElementNode  
Block Block (ExpressionNode)  
DataType DataType (ExpressionNode)  
Description Description (Element)  
DestinationElementType DestinationElementType (ElementNode)  
ElementType ElementType (Object)  
Kind Kind (ElementNode)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
OriginalText OriginalText (ExpressionNode)  
Position Position (ExpressionNode)  
EnumeratedAttributeMap EnumeratedAttributeMap  
Description Description (Element)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
Operation Operation (FeatureMap)  
OperationDescription OperationDescription (FeatureMap)  
Position Position (FeatureMap)  
EnumeratedTypeMap EnumeratedTypeMap  
Description Description (Element)  
ElementType ElementType (Object)  
MappingType MappingType (ClassifierMap)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
Operation Operation (ClassifierMap)  
OperationDescription OperationDescription (ClassifierMap)  
Expression Expression  
Description Description (Element)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
FeatureMap FeatureMap  
Description Description (Element)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
Operation Operation (FeatureMap)  
OperationDescription OperationDescription (FeatureMap)  
Position Position (FeatureMap)  
FileAttachment FileAttachment  
Author Author (RepositoryObject)  
CreationTime CreationTime (RepositoryObject)  
Description Description (Element)  
ElementType ElementType (Object)  
LastModificationTime LastModificationTime (RepositoryObject)  
Location Location (FileAttachment)  
ModelId ModelId (Object)  
Modifier Modifier (RepositoryObject)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
Filter Filter  
Comment Comment (ModelObject)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
Hide Hide (Filter)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
PhysicalName PhysicalName (ModelObject)  
Stereotype Stereotype (ModelObject)  
Folder Folder  
Author Author (RepositoryObject)  
CreationTime CreationTime (RepositoryObject)  
Description Description (Element)  
ElementType ElementType (Object)  
LastModificationTime LastModificationTime (RepositoryObject)  
ModelId ModelId (Object)  
Modifier Modifier (RepositoryObject)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
ForeignKey ForeignKey  
Comment Comment (ModelObject)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
PhysicalName PhysicalName (ModelObject)  
Stereotype Stereotype (ModelObject)  
Generalization Generalization  
Comment Comment (ModelObject)  
Complete Complete (Generalization)  
CppFriend CppFriend (Generalization)  
CppScope CppScope (Generalization)  
CppVirtual CppVirtual (Generalization)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
Exclusive Exclusive (Generalization)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
PhysicalName PhysicalName (ModelObject)  
Stereotype Stereotype (ModelObject)  
GeneralizationRole GeneralizationRole  
Comment Comment (ModelObject)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
OnDelete OnDelete (GeneralizationRole)  
OnInsert OnInsert (GeneralizationRole)  
OnUpdate OnUpdate (GeneralizationRole)  
PhysicalName PhysicalName (ModelObject)  
Stereotype Stereotype (ModelObject)  
Grouping Grouping  
Comment Comment (ModelObject)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
GroupingType GroupingType (Grouping)  
ModelId ModelId (Object)  
Multiplicity Multiplicity (Grouping)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
PhysicalName PhysicalName (ModelObject)  
Position Position (Grouping)  
Stereotype Stereotype (ModelObject)  
Hierarchy Hierarchy  
Comment Comment (ModelObject)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
PhysicalName PhysicalName (ModelObject)  
Stereotype Stereotype (ModelObject)  
Type Type (Hierarchy)  
HierarchyLevelAssociation HierarchyLevelAssociation  
Comment Comment (ModelObject)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
PhysicalName PhysicalName (ModelObject)  
Position Position (HierarchyLevelAssociation)  
Stereotype Stereotype (ModelObject)  
Identity Identity  
Cycle Cycle (Identity)  
ElementType ElementType (Object)  
IncrementValue IncrementValue (Identity)  
MaximumValue MaximumValue (Identity)  
MinimumValue MinimumValue (Identity)  
ModelId ModelId (Object)  
Name Name (Object)  
ObjectId ObjectId (Object)  
StartValue StartValue (Identity)  
Index Index  
Clustered Clustered (Index)  
Comment Comment (ModelObject)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
Generate Generate (Index)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
PhysicalName PhysicalName (ModelObject)  
Stereotype Stereotype (ModelObject)  
Unique Unique (Index)  
IndexMember IndexMember  
Comment Comment (ModelObject)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
PhysicalName PhysicalName (ModelObject)  
Position Position (IndexMember)  
SortOrder SortOrder (IndexMember)  
Stereotype Stereotype (ModelObject)  
Join Join  
Comment Comment (ModelObject)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
PhysicalName PhysicalName (ModelObject)  
Stereotype Stereotype (ModelObject)  
Type Type (Join)  
UserDefined UserDefined (Join)  
JoinGroup JoinGroup  
Comment Comment (ModelObject)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
PhysicalName PhysicalName (ModelObject)  
Stereotype Stereotype (ModelObject)  
JoinRole JoinRole  
Comment Comment (ModelObject)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
Left Left (JoinRole)  
ModelId ModelId (Object)  
Multiplicity Multiplicity (JoinRole)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
PhysicalName PhysicalName (ModelObject)  
Stereotype Stereotype (ModelObject)  
KeyMap KeyMap  
Description Description (Element)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
Operation Operation (FeatureMap)  
OperationDescription OperationDescription (FeatureMap)  
Position Position (FeatureMap)  
Level Level  
Comment Comment (ModelObject)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
PhysicalName PhysicalName (ModelObject)  
Stereotype Stereotype (ModelObject)  
LevelAssociation LevelAssociation  
Comment Comment (ModelObject)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
PhysicalName PhysicalName (ModelObject)  
Stereotype Stereotype (ModelObject)  
LevelAttribute LevelAttribute  
Comment Comment (ModelObject)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
InitialValue InitialValue (StructuralFeature)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
Optional Optional (StructuralFeature)  
PhysicalName PhysicalName (ModelObject)  
Position Position (Feature)  
Stereotype Stereotype (ModelObject)  
LevelKey LevelKey  
Comment Comment (ModelObject)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
PhysicalName PhysicalName (ModelObject)  
Stereotype Stereotype (ModelObject)  
MappingContent MappingContent  
Author Author (RepositoryObject)  
CreationTime CreationTime (RepositoryObject)  
Description Description (Element)  
ElementType ElementType (Object)  
LastModificationTime LastModificationTime (RepositoryObject)  
ModelId ModelId (Object)  
Modifier Modifier (RepositoryObject)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
Type Type (MappingContent)  
MappingModel MappingModel  
CreationTime CreationTime (MappingModel)  
Description Description (Element)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
MappingVersion MappingVersion  
Author Author (RepositoryObject)  
CreationTime CreationTime (RepositoryObject)  
Description Description (Element)  
ElementType ElementType (Object)  
LastModificationTime LastModificationTime (RepositoryObject)  
ModelId ModelId (Object)  
Modifier Modifier (RepositoryObject)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
Measure Measure  
Comment Comment (ModelObject)  
DefaultAggregation DefaultAggregation (Measure)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
Hide Hide (Measure)  
InitialValue InitialValue (StructuralFeature)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
Optional Optional (StructuralFeature)  
PhysicalName PhysicalName (ModelObject)  
Position Position (Feature)  
Sort Sort (Measure)  
Stereotype Stereotype (ModelObject)  
MetadataOrigin MetadataOrigin  
BridgeName BridgeName (MetadataOrigin)  
BridgeVersion BridgeVersion (MetadataOrigin)  
Description Description (Element)  
ElementType ElementType (Object)  
Encoding Encoding (MetadataOrigin)  
FormatName FormatName (MetadataOrigin)  
FormatVersion FormatVersion (MetadataOrigin)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
ResourceType ResourceType (MetadataOrigin)  
Source Source (MetadataOrigin)  
ToolName ToolName (MetadataOrigin)  
ToolVersion ToolVersion (MetadataOrigin)  
VendorName VendorName (MetadataOrigin)  
Model Model  
Author Author (Model)  
Comment Comment (ModelObject)  
CreationTime CreationTime (Model)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
ModificationTime ModificationTime (Model)  
Modifier Modifier (Model)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
PhysicalName PhysicalName (ModelObject)  
Stereotype Stereotype (ModelObject)  
ModelContent ModelContent  
Author Author (RepositoryObject)  
CreationTime CreationTime (RepositoryObject)  
Description Description (Element)  
ElementType ElementType (Object)  
LastModificationTime LastModificationTime (RepositoryObject)  
ModelId ModelId (Object)  
Modifier Modifier (RepositoryObject)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
Type Type (ModelContent)  
ModelVersion ModelVersion  
Author Author (RepositoryObject)  
CreationTime CreationTime (RepositoryObject)  
Description Description (Element)  
ElementType ElementType (Object)  
LastModificationTime LastModificationTime (RepositoryObject)  
ModelId ModelId (Object)  
Modifier Modifier (RepositoryObject)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
MultiModelContent MultiModelContent  
Author Author (RepositoryObject)  
CreationTime CreationTime (RepositoryObject)  
Description Description (Element)  
ElementType ElementType (Object)  
LastModificationTime LastModificationTime (RepositoryObject)  
ModelId ModelId (Object)  
Modifier Modifier (RepositoryObject)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
MultiModelFolder MultiModelFolder  
Author Author (RepositoryObject)  
CreationTime CreationTime (RepositoryObject)  
Description Description (Element)  
ElementType ElementType (Object)  
LastModificationTime LastModificationTime (RepositoryObject)  
ModelId ModelId (Object)  
Modifier Modifier (RepositoryObject)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
MultiModelVersion MultiModelVersion  
Author Author (RepositoryObject)  
CreationTime CreationTime (RepositoryObject)  
Description Description (Element)  
ElementType ElementType (Object)  
LastModificationTime LastModificationTime (RepositoryObject)  
ModelId ModelId (Object)  
Modifier Modifier (RepositoryObject)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
Note Note  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
ObjectId ObjectId (Object)  
Position Position (Note)  
Value Value (Note)  
OlapSchema OlapSchema  
Comment Comment (ModelObject)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
Direction Direction (DataPackage)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
PhysicalName PhysicalName (ModelObject)  
Stereotype Stereotype (ModelObject)  
Operation Operation  
Comment Comment (ModelObject)  
CppAbstract CppAbstract (Operation)  
CppConcurrency CppConcurrency (Operation)  
CppFriend CppFriend (Operation)  
CppScope CppScope (Operation)  
CppStatic CppStatic (Operation)  
CppVirtual CppVirtual (Operation)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
PhysicalName PhysicalName (ModelObject)  
Position Position (Operation)  
Postcondition Postcondition (Operation)  
Precondition Precondition (Operation)  
Semantics Semantics (Operation)  
Stereotype Stereotype (ModelObject)  
OperationNode OperationNode  
Block Block (ExpressionNode)  
DataType DataType (ExpressionNode)  
Description Description (Element)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
OriginalText OriginalText (ExpressionNode)  
Position Position (ExpressionNode)  
OperatorNode OperatorNode  
Block Block (ExpressionNode)  
DataType DataType (ExpressionNode)  
Description Description (Element)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
OriginalText OriginalText (ExpressionNode)  
Position Position (ExpressionNode)  
PhysicalObject PhysicalObject  
Comment Comment (ModelObject)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
ObjectType ObjectType (PhysicalObject)  
PhysicalName PhysicalName (ModelObject)  
Stereotype Stereotype (ModelObject)  
PhysicalRelationship PhysicalRelationship  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
ObjectId ObjectId (Object)  
PhysicalTarget PhysicalTarget  
Comment Comment (ModelObject)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
PhysicalName PhysicalName (ModelObject)  
Stereotype Stereotype (ModelObject)  
TargetType TargetType (PhysicalTarget)  
Predicate Predicate  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
ObjectId ObjectId (Object)  
Position Position (Predicate)  
Prefix Prefix (Predicate)  
PredicateNode PredicateNode  
Block Block (ExpressionNode)  
DataType DataType (ExpressionNode)  
Description Description (Element)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
OriginalText OriginalText (ExpressionNode)  
Position Position (ExpressionNode)  
Projection Projection  
BackgroundColor BackgroundColor (PresentationElement)  
Bold Bold (PresentationElement)  
ElementType ElementType (Object)  
FontColor FontColor (PresentationElement)  
FontName FontName (PresentationElement)  
FontSize FontSize (PresentationElement)  
Height Height (PresentationElement)  
Italic Italic (PresentationElement)  
LineColor LineColor (PresentationElement)  
ModelId ModelId (Object)  
Name Name (Object)  
ObjectId ObjectId (Object)  
ShapeType ShapeType (PresentationElement)  
Strike Strike (PresentationElement)  
Underline Underline (PresentationElement)  
Width Width (PresentationElement)  
X X (PresentationElement)  
Y Y (PresentationElement)  
Z Z (PresentationElement)  
Prompt Prompt  
Comment Comment (ModelObject)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
MultipleSelection MultipleSelection (Prompt)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
PhysicalName PhysicalName (ModelObject)  
Question Question (Prompt)  
Stereotype Stereotype (ModelObject)  
PromptAnswer PromptAnswer  
Comment Comment (ModelObject)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
InitialValue InitialValue (StructuralFeature)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
Optional Optional (StructuralFeature)  
PhysicalName PhysicalName (ModelObject)  
Position Position (Feature)  
Stereotype Stereotype (ModelObject)  
PropertyElementTypeScope PropertyElementTypeScope  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
ObjectId ObjectId (Object)  
Scope Scope (PropertyElementTypeScope)  
PropertyType PropertyType  
Comment Comment (ModelObject)  
DataType DataType (PropertyType)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
Group Group (PropertyType)  
InitialValue InitialValue (PropertyType)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
PhysicalName PhysicalName (ModelObject)  
Position Position (PropertyType)  
Stereotype Stereotype (ModelObject)  
Usage Usage (PropertyType)  
PropertyValue PropertyValue  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
ObjectId ObjectId (Object)  
Value Value (PropertyValue)  
Realization Realization  
Comment Comment (ModelObject)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
PhysicalName PhysicalName (ModelObject)  
Stereotype Stereotype (ModelObject)  
RecordFileSchema RecordFileSchema  
Comment Comment (ModelObject)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
Direction Direction (DataPackage)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
PhysicalName PhysicalName (ModelObject)  
Stereotype Stereotype (ModelObject)  
RelationshipProjection RelationshipProjection  
BackgroundColor BackgroundColor (PresentationElement)  
Bold Bold (PresentationElement)  
ElementType ElementType (Object)  
FontColor FontColor (PresentationElement)  
FontName FontName (PresentationElement)  
FontSize FontSize (PresentationElement)  
Height Height (PresentationElement)  
Italic Italic (PresentationElement)  
LineColor LineColor (PresentationElement)  
LinePoints LinePoints (RelationshipProjection)  
ModelId ModelId (Object)  
Name Name (Object)  
ObjectId ObjectId (Object)  
ShapeType ShapeType (PresentationElement)  
Strike Strike (PresentationElement)  
Underline Underline (PresentationElement)  
Width Width (PresentationElement)  
X X (PresentationElement)  
Y Y (PresentationElement)  
Z Z (PresentationElement)  
Report Report  
Comment Comment (ModelObject)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
PhysicalName PhysicalName (ModelObject)  
Stereotype Stereotype (ModelObject)  
ReportAttribute ReportAttribute  
Comment Comment (ModelObject)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
InitialValue InitialValue (StructuralFeature)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
Optional Optional (StructuralFeature)  
PhysicalName PhysicalName (ModelObject)  
Position Position (Feature)  
Stereotype Stereotype (ModelObject)  
Usage Usage (ReportAttribute)  
ReportAxis ReportAxis  
Comment Comment (ModelObject)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
PhysicalName PhysicalName (ModelObject)  
Position Position (ReportItem)  
Role Role (ReportAxis)  
Stereotype Stereotype (ModelObject)  
ReportChart ReportChart  
Comment Comment (ModelObject)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
PhysicalName PhysicalName (ModelObject)  
Position Position (ReportItem)  
Stereotype Stereotype (ModelObject)  
ReportDataSet ReportDataSet  
Comment Comment (ModelObject)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
PhysicalName PhysicalName (ModelObject)  
Stereotype Stereotype (ModelObject)  
ReportField ReportField  
Comment Comment (ModelObject)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
PhysicalName PhysicalName (ModelObject)  
Position Position (ReportItem)  
Stereotype Stereotype (ModelObject)  
ReportList ReportList  
Comment Comment (ModelObject)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
PhysicalName PhysicalName (ModelObject)  
Position Position (ReportItem)  
Stereotype Stereotype (ModelObject)  
ReportMatrix ReportMatrix  
Comment Comment (ModelObject)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
PhysicalName PhysicalName (ModelObject)  
Position Position (ReportItem)  
Stereotype Stereotype (ModelObject)  
ReportPage ReportPage  
Comment Comment (ModelObject)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
PhysicalName PhysicalName (ModelObject)  
Position Position (ReportItem)  
Stereotype Stereotype (ModelObject)  
ReportPageBody ReportPageBody  
Comment Comment (ModelObject)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
PhysicalName PhysicalName (ModelObject)  
Position Position (ReportItem)  
Stereotype Stereotype (ModelObject)  
ReportPageFooter ReportPageFooter  
Comment Comment (ModelObject)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
PhysicalName PhysicalName (ModelObject)  
Position Position (ReportItem)  
Stereotype Stereotype (ModelObject)  
ReportPageHeader ReportPageHeader  
Comment Comment (ModelObject)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
PhysicalName PhysicalName (ModelObject)  
Position Position (ReportItem)  
Stereotype Stereotype (ModelObject)  
ReportRectangle ReportRectangle  
Comment Comment (ModelObject)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
PhysicalName PhysicalName (ModelObject)  
Position Position (ReportItem)  
Stereotype Stereotype (ModelObject)  
ReportTable ReportTable  
Comment Comment (ModelObject)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
PhysicalName PhysicalName (ModelObject)  
Position Position (ReportItem)  
Stereotype Stereotype (ModelObject)  
ReportText ReportText  
Comment Comment (ModelObject)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
PhysicalName PhysicalName (ModelObject)  
Position Position (ReportItem)  
Stereotype Stereotype (ModelObject)  
Value Value (ReportText)  
Repository Repository  
Author Author (RepositoryObject)  
CreationTime CreationTime (RepositoryObject)  
Description Description (Element)  
ElementType ElementType (Object)  
LastModificationTime LastModificationTime (RepositoryObject)  
ModelId ModelId (Object)  
Modifier Modifier (RepositoryObject)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
SQLViewAssociation SQLViewAssociation  
AliasName AliasName (SQLViewAssociation)  
Comment Comment (ModelObject)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
PhysicalName PhysicalName (ModelObject)  
SQLTableSequence SQLTableSequence (SQLViewAssociation)  
Stereotype Stereotype (ModelObject)  
SQLViewAttribute SQLViewAttribute  
Comment Comment (ModelObject)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
Expression Expression (SQLViewAttribute)  
InitialValue InitialValue (StructuralFeature)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
Optional Optional (StructuralFeature)  
PhysicalName PhysicalName (ModelObject)  
Position Position (Feature)  
Stereotype Stereotype (ModelObject)  
SQLViewEntity SQLViewEntity  
Comment Comment (ModelObject)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
DimensionalRole DimensionalRole (SQLViewEntity)  
ElementType ElementType (Object)  
GroupByClause GroupByClause (SQLViewEntity)  
HavingClause HavingClause (SQLViewEntity)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
OrderByClause OrderByClause (SQLViewEntity)  
PhysicalName PhysicalName (ModelObject)  
SelectType SelectType (SQLViewEntity)  
Stereotype Stereotype (ModelObject)  
ViewStatement ViewStatement (SQLViewEntity)  
ViewStatementType ViewStatementType (SQLViewEntity)  
ViewType ViewType (SQLViewEntity)  
WhereClause WhereClause (SQLViewEntity)  
Sequence Sequence  
Comment Comment (ModelObject)  
DataType DataType (ConcreteType)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
Length Length (ConcreteType)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeDataType NativeDataType (Sequence)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
PhysicalName PhysicalName (ModelObject)  
Scale Scale (ConcreteType)  
Stereotype Stereotype (ModelObject)  
Shape Shape  
BackgroundColor BackgroundColor (PresentationElement)  
Bold Bold (PresentationElement)  
ElementType ElementType (Object)  
FontColor FontColor (PresentationElement)  
FontName FontName (PresentationElement)  
FontSize FontSize (PresentationElement)  
Height Height (PresentationElement)  
Italic Italic (PresentationElement)  
LineColor LineColor (PresentationElement)  
LinePoints LinePoints (Shape)  
ModelId ModelId (Object)  
Name Name (Object)  
ObjectId ObjectId (Object)  
ShapeType ShapeType (PresentationElement)  
Strike Strike (PresentationElement)  
Underline Underline (PresentationElement)  
Width Width (PresentationElement)  
X X (PresentationElement)  
Y Y (PresentationElement)  
Z Z (PresentationElement)  
StatementNode StatementNode  
Block Block (ExpressionNode)  
DataType DataType (ExpressionNode)  
Description Description (Element)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
OriginalText OriginalText (ExpressionNode)  
Position Position (ExpressionNode)  
StatementType StatementType (StatementNode)  
StoredProcedure StoredProcedure  
Comment Comment (ModelObject)  
CppAbstract CppAbstract (Operation)  
CppConcurrency CppConcurrency (Operation)  
CppFriend CppFriend (Operation)  
CppScope CppScope (Operation)  
CppStatic CppStatic (Operation)  
CppVirtual CppVirtual (Operation)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
PhysicalName PhysicalName (ModelObject)  
Position Position (Operation)  
Postcondition Postcondition (Operation)  
Precondition Precondition (Operation)  
Semantics Semantics (Operation)  
Stereotype Stereotype (ModelObject)  
Synonym Synonym  
Comment Comment (ModelObject)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
PhysicalName PhysicalName (ModelObject)  
Stereotype Stereotype (ModelObject)  
Transformation Transformation  
Description Description (Element)  
ElementType ElementType (Object)  
MappingType MappingType (Transformation)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
Operation Operation (Transformation)  
OperationDescription OperationDescription (Transformation)  
TransformationType TransformationType (Transformation)  
TransformationTask TransformationTask  
Description Description (Element)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
Trigger Trigger  
Comment Comment (ModelObject)  
CppAbstract CppAbstract (Operation)  
CppConcurrency CppConcurrency (Operation)  
CppFriend CppFriend (Operation)  
CppScope CppScope (Operation)  
CppStatic CppStatic (Operation)  
CppVirtual CppVirtual (Operation)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
FireOnDelete FireOnDelete (Trigger)  
FireOnInsert FireOnInsert (Trigger)  
FireOnUpdate FireOnUpdate (Trigger)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
PhysicalName PhysicalName (ModelObject)  
Position Position (Operation)  
Postcondition Postcondition (Operation)  
Precondition Precondition (Operation)  
Semantics Semantics (Operation)  
Stereotype Stereotype (ModelObject)  
TriggerType TriggerType (Trigger)  
TypeValue TypeValue  
Comment Comment (ModelObject)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
PhysicalName PhysicalName (ModelObject)  
Position Position (TypeValue)  
Stereotype Stereotype (ModelObject)  
Value Value (TypeValue)  
TypeValueMap TypeValueMap  
Description Description (Element)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
Operation Operation (FeatureMap)  
OperationDescription OperationDescription (FeatureMap)  
Position Position (FeatureMap)  
XmlSchema XmlSchema  
Comment Comment (ModelObject)  
Description Description (Element)  
DesignLevel DesignLevel (ModelObject)  
Direction Direction (DataPackage)  
ElementType ElementType (Object)  
ModelId ModelId (Object)  
Name Name (Object)  
NativeId NativeId (Element)  
NativeType NativeType (Element)  
ObjectId ObjectId (Object)  
PhysicalName PhysicalName (ModelObject)  
Stereotype Stereotype (ModelObject)