{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/verisk/refs/heads/main/json-schema/insurance-analytics-peril-score-response-schema.json", "title": "PerilScoreResponse", "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": [] } } }