{
  "$schema" : "https://json-schema.org/draft/2020-12/schema",
  "$id" : "https://voltdb.com/voltsp/schemas/sink/blackhole",
  "title" : "Blackhole Sink Configuration",
  "description" : "The `blackhole` sink discards all the data it consumes.\n\nIt is mainly used for testing or for scenarios where data output is not required.\n",
  "type" : "object",
  "properties" : {
    "blackhole" : {
      "type" : "object",
      "properties" : { },
      "additionalProperties" : false
    }
  },
  "required" : [ "blackhole" ],
  "additionalProperties" : false
}
