Interface DataModelParams

Parameters used to define a DataModel.

These parameters are:

For detailed usage, refer to @xeokit/sdk/data.

interface DataModelParams {
    author?: string;
    createdAt?: string;
    creatingApplication?: string;
    id: string;
    objects?: DataObjectParams[];
    projectId?: string | number;
    propertySets?: PropertySetParams[];
    relationships?: RelationshipParams[];
    revisionId?: string | number;
    schema?: string;
}

Hierarchy (View Summary)

Properties

author?: string

The author of the data model, if available.

createdAt?: string

The creation date of the data model, if available.

creatingApplication?: string

The application used to create the data model, if known.

id: string

The unique identifier for the data model.

The DataModel is stored in Data.models under this ID.

objects?: DataObjectParams[]

Parameters for DataObjects in the DataModel.

This array contains the configuration for the DataObjects to be added to the DataModel.

projectId?: string | number

The project ID associated with the data model, if available.

propertySets?: PropertySetParams[]

Parameters for PropertySets in the DataModel.

This array contains the configuration for the PropertySets that will be added to the DataModel.

relationships?: RelationshipParams[]

Parameters for Relationships in the DataModel.

This array contains the configuration for the Relationships that will be established between the DataObjects within the DataModel.

revisionId?: string | number

The revision ID of the data model, if available.

schema?: string

The schema version of the data model, if available.