{
  "$schema" : "https://json-schema.org/draft/2020-12/schema",
  "$id" : "https://voltdb.com/voltsp/schemas/sink/memory",
  "title" : "Memory Sink Configuration",
  "description" : "The `memory` sink captures all stream items into an in-memory list.\n\nThis is useful for testing or scenarios where bounded streams can be held in memory.\n\nTypically requires java based pipeline with code that extracts the data from the sink, e.g. displaying\n data to the user through a custom web server.\n",
  "type" : "object",
  "properties" : {
    "memory" : {
      "type" : "object",
      "properties" : { },
      "additionalProperties" : false
    }
  },
  "required" : [ "memory" ],
  "additionalProperties" : false
}
