Verisk · Schema

PropertyLookupResponse

PropertyLookupResponse schema from Verisk Insurance Analytics API

InsuranceAnalyticsRisk ManagementProperty DataCatastrophe ModelingUnderwritingClaims

Properties

Name Type Description
matchQuality string
propertyId string
address object
coordinates object
riskData object
View JSON Schema on GitHub

JSON Schema

insurance-analytics-property-lookup-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-property-lookup-response-schema.json",
  "title": "PropertyLookupResponse",
  "description": "PropertyLookupResponse schema from Verisk Insurance Analytics API",
  "type": "object",
  "properties": {
    "matchQuality": {
      "type": "string",
      "enum": [
        "EXACT",
        "INTERPOLATED",
        "ZIP_CENTROID",
        "CITY_CENTROID"
      ],
      "example": "EXACT"
    },
    "propertyId": {
      "type": "string",
      "example": "PROP-123456"
    },
    "address": {
      "$ref": "#/components/schemas/Address"
    },
    "coordinates": {
      "$ref": "#/components/schemas/Coordinates"
    },
    "riskData": {
      "$ref": "#/components/schemas/PropertyRisk"
    }
  }
}