ModelSummary

open_in_new

A base interface of common fields found on the model returned from a full get or from the search results.

GraphQL Schema definition

  • interface ModelSummary {
  • # The unique identifier for this model.
  • id: 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.
  • internalId: ID
  • # The ID of the organization this model belongs to.
  • organization: ID
  • created: DateTime
  • modified: DateTime
  • # A display name for this model.
  • name: String
  • # Additional description of the model.
  • description: String
  • # Who is allowed to see this model.
  • visibility: ModelVisibility
  • # Whether the model is a demo model. Demo models are the only models accessible in
  • # sandbox mode.
  • demo: Boolean
  • # The street address associated with this model, if available.
  • address: Address
  • # The latitude / longitude of the model, if available.
  • geolocation: GeoLocation
  • # Real-estate information associated with the model.
  • mls: ModelMlsDetails
  • }