The Blue Team detector enforces a structured schema format requiring a single optional money link object and an array of other links, each defining the anchor text, target URL, containing sentence, and detection rationale.

sequenceDiagram
    participant Red as Red Team Writer
    participant Blue as Blue Team Detector
    participant Schema as JSON Schema Guard

    Red->>Blue: Article Draft + Target Link
    Blue->>Schema: Request Evaluation Schema
    Schema-->>Blue: Validated {money_link?, other_links[]}
    Note over Blue: If money_link == target: REJECT (Detected)<br/>If money_link != target: ACCEPT (Passed)