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