RoomDetails

open_in_new

@beta This is part of the Property Insights Beta Used to create and patch model rooms.

GraphQL Schema definition

  • input RoomDetails {
  • # The ID of the layer the Room should be associated with.
  • # If left blank it will default to the View's default write layer, or the existing
  • # data's layer on a patch mutation.
  • layerId: ID
  • # The primary floor this room is located on.
  • floorId: ID
  • # A user displayable label for the room.
  • label: String
  • # The RoomClassifications of this room.
  • classifications: [ID!]
  • # The keywords associated with this room.
  • #
  • # If unspecified, keywords will be set from the room's classifications.
  • keywords: [String!]
  • # The closed bounding box of vertices and edges that make up this room.
  • boundary: BoundedRegionDetails
  • # Any holes within the boundary of this ModelRoom. To reset this room's holes,
  • # send an empty set here.
  • holes: [BoundedRegionDetails!]
  • # The room's dimensional data.
  • dimensionEstimates: DimensionPatch
  • # All annotations and locations that fall within this room. These will be updated
  • # to reflect this association.
  • associations: RoomAssociations
  • }