Verisk · JSON Structure

Insurance Analytics Peril Score Response Structure

PerilScoreResponse schema from Verisk Insurance Analytics API

Type: object Properties: 1
InsuranceAnalyticsRisk ManagementProperty DataCatastrophe ModelingUnderwritingClaims

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

Properties

locations

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-peril-score-response-structure.json",
  "description": "PerilScoreResponse schema from Verisk Insurance Analytics API",
  "type": "object",
  "properties": {
    "locations": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "locationId": {
            "type": "string"
          },
          "perils": {
            "type": "object",
            "additionalProperties": {
              "type": "object",
              "properties": {
                "score": {
                  "type": "integer",
                  "minimum": 1,
                  "maximum": 100
                },
                "riskTier": {
                  "type": "string",
                  "enum": [
                    "TIER_1",
                    "TIER_2",
                    "TIER_3",
                    "TIER_4",
                    "TIER_5"
                  ]
                },
                "annualExceedanceProbability": {
                  "type": "number",
                  "description": "Annual probability of loss event"
                }
              }
            }
          }
        }
      },
      "example": []
    }
  },
  "name": "PerilScoreResponse"
}