A generic schema has the following format:
{"name" : "columns",
"type" : [ "null", {
"type" : "array",
"items" : {
"type" : "record",
"name" : "column",
"doc" : "A column for the table",
"fields" : [
{"name" : "name", "type" : [ "null", "string" ], "default" : null},
{"name" : "value", "type" : [ "null", "string" ], "default" : null},
{"name" : "isPresent","type" : [ "null", "boolean" ],"default" : null},
{"name" : "beforeImage","type" : [ "null", "string" ], "default" : null},
{"name" : "isPresentBeforeImage", "type" : [ "null", "boolean" ], "default" : null}
]
}
} ]