DimensionPatch

open_in_new

@beta This is part of the Property Insights Beta Used to patch the dimensionEstimates field on rooms.

GraphQL Schema definition

  • input DimensionPatch {
  • # The room these dimensions are associated with.
  • room: ID!
  • # The estimated area of the room.
  • # Metric - sq meters
  • # Imperial - sq feet
  • area: Float
  • # The estimated area of the room not counting outdoor space or portions covered by
  • # walls.
  • # Metric - sq meters
  • # Imperial - sq feet
  • areaIndoor: Float
  • # The estimated depth of the room.
  • # Depth is the 2D vertical dimension of the room as visible on the Property Report
  • # page.
  • # Metric - meters
  • # Imperial - feet
  • depth: Float
  • # Metadata pertaining to the depth measurement.
  • depthData: DimensionDataPatch
  • # The estimated height of the room.
  • # Metric - meters
  • # Imperial - feet
  • height: Float
  • # The estimated width of the room.
  • # Width is the 2D horizontal dimension of the room as visible on the Property
  • # Report page.
  • # Metric - meters
  • # Imperial - feet
  • width: Float
  • # Metadata pertaining to the width measurement.
  • widthData: DimensionDataPatch
  • # The units the dimensions in this patch are measured in.
  • units: Units!
  • # This room's BoundedRegion's distance from the ground plane.
  • # The ground plane for the model has a Z height location of 0.0.
  • # Metric - meters
  • # Imperial - feet
  • lowerElevation: Float
  • }