added

Obstruction Count in Roof Summary API

The Retrieve Roof Summary API now includes a count of obstructions in the obstructions object, which contains two fields: circle_count and polygon_count. With known obstruction counts, you can further streamline your design quality assurance process by automatically matching obstruction data in Aurora to other sources (e.g., site survey results).

{
  "roofs": [
    {
			...
      "obstructions": {
				"circle_count": 7,
				"polygon_count": 5
			},
			...
      "faces": [
        {
          ...
					"obstructions": {
						"circle_count": 1,
						"polygon_count": 0
					},
					...
        }
      ]
    }
  ]
}