changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "avgHeight": {
+ "type": "number"
+ },
+ "highImpactBuildings": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "distance": {
+ "type": "number"
+ },
+ "height": {
+ "type": "number"
+ },
+ "name": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "name",
+ "height",
+ "distance"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "keyInsights": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "markdownReport": {
+ "type": "string"
+ },
+ "maxHeight": {
+ "type": "number"
+ },
+ "nearbyBuildingCount": {
+ "type": "number"
+ },
+ "shadowPolygons": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "buildingName": {
+ "type": "string"
+ },
+ "height": {
+ "type": "number"
+ },
+ "polygon": {
+ "items": {
+ "items": [
+ {
+ "type": "number"
+ },
+ {
+ "type": "number"
+ }
+ ],
+ "type": "array"
+ },
+ "type": "array"
+ },
+ "shadowLengthM": {
+ "type": "number"
+ }
+ },
+ "required": [
+ "buildingName",
+ "height",
+ "shadowLengthM",
+ "polygon"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "sunPosition": {
+ "additionalProperties": false,
+ "properties": {
+ "altitudeDeg": {
+ "type": "number"
+ },
+ "azimuthDeg": {
+ "type": "number"
+ },
+ "dateTime": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "azimuthDeg",
+ "altitudeDeg",
+ "dateTime"
+ ],
+ "type": "object"
+ },
+ "sunlightHoursEstimate": {
+ "type": "number"
+ },
+ "totalShadowAreaSqm": {
+ "type": "number"
+ }
+ },
+ "required": [
+ "sunPosition",
+ "nearbyBuildingCount",
+ "maxHeight",
+ "avgHeight",
+ "totalShadowAreaSqm",
+ "sunlightHoursEstimate",
+ "shadowPolygons",
+ "highImpactBuildings",
+ "keyInsights"
+ ],
+ "type": "object"
+}