Verisk · JSON Structure

Insurance Analytics Construction Data Structure

ConstructionData schema from Verisk Insurance Analytics API

Type: object Properties: 7
InsuranceAnalyticsRisk ManagementProperty DataCatastrophe ModelingUnderwritingClaims

ConstructionData is a JSON Structure definition published by Verisk, describing 7 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

yearBuilt squareFootage stories constructionType roofType occupancyType buildingCode

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$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"
}