Unify Shield
M
Presentation Workspace

Concept-note build with safe demo data, reviewer workflow, and human-in-the-loop guardrails.

Vector Detail

Shared Address + IP Reuse

rule

Flags rental assistance applications when the same service address and submission IP appear repeatedly within a review window.

Rule Builder

Compose AND/OR logic for deterministic signals

logicANDconditions2

This editor is front-end only in the scaffold. Persist the payload through POST /api/vectors.

Match logic
signal:street_address
signal:ip_address
{
  "logic": "AND",
  "conditions": [
    {
      "id": "cond-1",
      "column": "signal:street_address",
      "operator": "contains",
      "value": "juniper"
    },
    {
      "id": "cond-2",
      "column": "signal:ip_address",
      "operator": "equals",
      "value": "66.41.14.22"
    }
  ]
}