{
  "$schema" : "https://json-schema.org/draft/2020-12/schema",
  "$id" : "https://voltdb.com/voltsp/schemas/sink/stdout",
  "title" : "Stdout Sink Configuration",
  "description" : "The `stdout` sink writes streamed data items to the standard output (console).\n It is useful for debugging or logging streamed data.\n",
  "type" : "object",
  "properties" : {
    "stdout" : {
      "type" : "object",
      "properties" : { },
      "additionalProperties" : false
    }
  },
  "required" : [ "stdout" ],
  "additionalProperties" : false
}
