Null sink

The null sink is the equivalent of the empty data source; it will discard any entities written to it and do nothing (it never raises an error):

Prototype

{
    "type": "null"
}

Example configuration

The outermost object would be your pipe configuration, which is omitted here for brevity:

{
    "sink": {
        "type": "null"
    }
}