Verisk · JSON Structure

Insurance Analytics Peril Score Request Structure

PerilScoreRequest schema from Verisk Insurance Analytics API

Type: object Properties: 2 Required: 2
InsuranceAnalyticsRisk ManagementProperty DataCatastrophe ModelingUnderwritingClaims

PerilScoreRequest is a JSON Structure definition published by Verisk, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

locations perils

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-request-structure.json",
  "description": "PerilScoreRequest schema from Verisk Insurance Analytics API",
  "type": "object",
  "properties": {
    "locations": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "locationId": {
            "type": "string"
          },
          "latitude": {
            "type": "double"
          },
          "longitude": {
            "type": "double"
          }
        }
      },
      "example": []
    },
    "perils": {
      "type": "array",
      "items": {
        "type": "string",
        "enum": [
          "HURRICANE",
          "TORNADO",
          "HAIL",
          "WILDFIRE",
          "EARTHQUAKE",
          "FLOOD",
          "WINTER_STORM",
          "LIGHTNING"
        ]
      },
      "example": []
    }
  },
  "required": [
    "locations",
    "perils"
  ],
  "name": "PerilScoreRequest"
}