{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/verisk/refs/heads/main/json-structure/insurance-analytics-construction-data-structure.json", "description": "ConstructionData schema from Verisk Insurance Analytics API", "type": "object", "properties": { "yearBuilt": { "type": "int32", "example": 2025 }, "squareFootage": { "type": "int32", "example": 100 }, "stories": { "type": "int32", "example": 100 }, "constructionType": { "type": "string", "enum": [ "FRAME", "MASONRY", "FIRE_RESISTIVE", "MODIFIED_FIRE_RESISTIVE", "JOISTED_MASONRY", "NON_COMBUSTIBLE" ], "example": "FRAME" }, "roofType": { "type": "string", "example": "FRAME" }, "occupancyType": { "type": "string", "enum": [ "RESIDENTIAL", "COMMERCIAL", "INDUSTRIAL", "MIXED_USE" ], "example": "RESIDENTIAL" }, "buildingCode": { "type": "string", "description": "Applicable building code version", "example": "example-value" } }, "name": "ConstructionData" }