INTERFACE
ModelSummary
A base interface of common fields found on the model returned from a full get or from the search results.
link GraphQL Schema definition
- interface ModelSummary {
- # The unique identifier for this model.
- ID! :
- # An additional identifier that may be changed.
- # If this ID is unique within the organization it may be used to directly lookup
- # the model for editing and retrieval.
- ID :
- # The ID of the organization this model belongs to.
- ID :
- DateTime :
- DateTime :
- # A display name for this model.
- String :
- # Additional description of the model.
- String :
- # Who is allowed to see this model.
- ModelVisibility :
- # Whether the model is a demo model. Demo models are the only models accessible in
- # sandbox mode.
- Boolean :
- # The street address associated with this model, if available.
- Address :
- # The latitude / longitude of the model, if available.
- GeoLocation :
- # Real-estate information associated with the model.
- ModelMlsDetails :
- }
link Require by
- ModelA digital twin, metadata and access to assets associated with a 3D model of a space.
- ModelSearchResultThis is a flattened representation of the model which removes or merges all lists of complex objects so that the fields may be directly queried. Any field on this object may be included as a keyword in the models query. For example "name: Demo" would search for models with the word Demo in the name. A search for "mattertags.labels: kitchen" would search for any models that have at least one mattertag with the word kitchen in the label.