{
  "name": "identity_profile_summarizer",
  "version": "1.0.0",
  "description": "Summarizes a user's identity and credit profile into structured, agent-usable insights.",
  "input_schema": {
    "type": "object",
    "properties": {
      "full_name": { "type": "string" },
      "dob": { "type": "string" },
      "addresses": { "type": "array", "items": { "type": "string" } },
      "credit_summary": { "type": "string" }
    },
    "required": ["full_name", "credit_summary"]
  },
  "output_schema": {
    "type": "object",
    "properties": {
      "risk_flags": { "type": "array", "items": { "type": "string" } },
      "identity_strength_score": { "type": "number" },
      "summary": { "type": "string" }
    }
  }
}
