{
  "name": "evaluate_property_risk",
  "description": "Evaluate a property address for parcel, flood, tax, permit, zoning, insurance, risk, and official source context.",
  "method": "POST",
  "endpoint": "https://property-risk-passport-api.lifebite-app.workers.dev/v1/property-risk-full",
  "payment": {
    "protocol": "x402",
    "quote_endpoint": "https://property-risk-passport-api.lifebite-app.workers.dev/v1/property-risk-full/quote"
  },
  "inputSchema": {
    "type": "object",
    "properties": {
      "address": {
        "type": "string",
        "minLength": 5,
        "maxLength": 300,
        "description": "Full US property street address to evaluate."
      },
      "response_mode": {
        "type": "string",
        "enum": [
          "full",
          "compact"
        ],
        "default": "full",
        "description": "Use full for the complete due-diligence packet or compact for agent triage."
      }
    },
    "required": [
      "address"
    ],
    "additionalProperties": false
  },
  "outputSummary": {
    "compact": "result_status, match_status, parcel summary, flood summary, taxing summary, risk score/level, top warnings, recommended next steps, and source links.",
    "full": "Complete property risk passport with parcel validation, FEMA flood zone/proximity, tax entities, school district, permit history, zoning/land-use context, insurance red flags, risk and quality scores, recommendations, official source links, and metadata."
  },
  "examples": [
    {
      "name": "good_match",
      "input": {
        "address": "611 Walker St, Houston, TX 77002",
        "response_mode": "compact"
      }
    },
    {
      "name": "failed_or_new_construction",
      "input": {
        "address": "3413 Comice Lane, Pearland, TX 77581",
        "response_mode": "compact"
      }
    },
    {
      "name": "invalid_address",
      "input": {
        "address": "not an address",
        "response_mode": "compact"
      }
    }
  ]
}