{ "$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": [] } } }