Orchestrator

fcpa_tracker_watchlist

Version: 20260818140651-24d39ba8

Graph

search (enumerate)
register_dockets (enumerate)

Node Configuration

search (enumerate)
KeyValue
params
searches
since_date
max_results
function
response_key
register_dockets (enumerate)
KeyValue
params
tracker
payloads
skip_persistence
function
response_key
Saves to disk and updates any active crons using this pipeline

Run with Parameters

Pipeline JSON

{
  "edges": [
    {
      "to": "search",
      "from": "__start__"
    },
    {
      "to": "register_dockets",
      "from": "search"
    },
    {
      "to": "__end__",
      "from": "register_dockets"
    }
  ],
  "nodes": [
    {
      "name": "search",
      "type": "enumerate",
      "config": {
        "params": {
          "searches": [
            {
              "query": "FCPA bribery \"foreign official\"",
              "dataset": "dockets",
              "filters": [
                {
                  "fieldId": "nature_of_suit",
                  "condition": {
                    "type": "IN_VALUES",
                    "values": [
                      "99999",
                      "470",
                      "690"
                    ]
                  }
                }
              ]
            }
          ],
          "since_date": "2020-01-01",
          "max_results": 200
        },
        "function": "search_dockets",
        "response_key": "payloads"
      }
    },
    {
      "name": "register_dockets",
      "type": "enumerate",
      "config": {
        "params": {
          "tracker": "fcpa",
          "payloads": "$state.payloads",
          "skip_persistence": false
        },
        "function": "register_tracker_watches",
        "response_key": "watch_result"
      }
    }
  ],
  "_comment": "Search Bloomberg Law for FCPA candidates and register docket results on the fcpa watchlist. Agency-material results remain available in the search output but are not watchlisted because they are not dockets."
}
Back to Pipelines