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