Dimension

open_in_new

Estimate of room or floor dimensions. This information is not fully available on all models.

@deprecated 05/17/2023

GraphQL Schema definition

  • type Dimension {
  • # The estimated area of the ceiling.
  • #
  • # Metric - sq meters
  • #
  • # Imperial - sq feet
  • areaCeiling: Float
  • # The estimated area of the floor.
  • #
  • # Metric - sq meters
  • #
  • # Imperial - sq feet
  • areaFloor: Float
  • # The estimated area of the floor not counting outdoor space or portions covered
  • # by walls.
  • #
  • # Metric - sq meters
  • #
  • # Imperial - sq feet
  • areaFloorIndoor: Float
  • # The estimated area of the walls.
  • #
  • # Metric - sq meters
  • #
  • # Imperial - sq feet
  • areaWall: Float
  • # The estimated volume of the room.
  • #
  • # Metric - cubic meters
  • #
  • # Imperial - cubic feet
  • volume: Float
  • # The estimated length of the room.
  • #
  • # Metric - meters
  • #
  • # Imperial - feet
  • depth: Float
  • # The estimated height of the room.
  • #
  • # Metric - meters
  • #
  • # Imperial - feet
  • height: Float
  • # The estimated width of the room.
  • #
  • # Metric - meters
  • #
  • # Imperial - feet
  • width: Float
  • # The units the dimensions are in.
  • units: Units!
  • }