@beta This is part of the Property Insights Beta Defines an opening on a bounded region edge.

GraphQL Schema definition

  • type Opening {
  • id: ID!
  • height: Float!
  • width: Float!
  • lowerElevation: Float!
  • # Openings are understood relative to the edges they are defined on.
  • # The 'relativeCenter' is the fractional length (between 0 and 1) of the center of
  • # the opening along the edge
  • # coincident with the first listed vertex on the edge if set to 0, halfway along
  • # the edge if set to .5, etc.
  • relativeCenter: Float!
  • # The type of opening in the boundary edge.
  • # e.g. doorway, window, etc.
  • type: OpeningType!
  • }