{
  "name": "identity_signal_extractor",
  "version": "1.0.0",
  "description": "Extracts structured identity signals from unstructured text for downstream agent workflows.",
  "input_schema": {
    "type": "object",
    "properties": {
      "raw_text": { "type": "string" }
    },
    "required": ["raw_text"]
  },
  "output_schema": {
    "type": "object",
    "properties": {
      "signals": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "signal": { "type": "string" },
            "confidence": { "type": "number" }
          }
        }
      }
    }
  }
}
