Verisk · Schema

RiskScoreResponse

RiskScoreResponse schema from Verisk Insurance Analytics API

InsuranceAnalyticsRisk ManagementProperty DataCatastrophe ModelingUnderwritingClaims

Properties

Name Type Description
locations array
View JSON Schema on GitHub

JSON Schema

insurance-analytics-risk-score-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/verisk/refs/heads/main/json-schema/insurance-analytics-risk-score-response-schema.json",
  "title": "RiskScoreResponse",
  "description": "RiskScoreResponse schema from Verisk Insurance Analytics API",
  "type": "object",
  "properties": {
    "locations": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "locationId": {
            "type": "string"
          },
          "scores": {
            "type": "object",
            "additionalProperties": {
              "type": "object",
              "properties": {
                "score": {
                  "oneOf": [
                    {
                      "type": "integer"
                    },
                    {
                      "type": "string"
                    },
                    {
                      "type": "number"
                    }
                  ]
                },
                "description": {
                  "type": "string"
                }
              }
            }
          }
        }
      },
      "example": []
    }
  }
}