{ "create_table": { "test_writes": { "columns": { "k1": "INT", "k2": "STRING", "v1": "DECIMAL", "v2": "JSON" }, "primary_key": [ "k1", "k2" ] } }, "ops": [ { "upsert": { "test_writes": [ { "k1": "1", "k2": "a", "v1": "12.78", "v2": "{\"x\": \"y\"}" }, { "k1": "1", "k2": "b", "v1": "91.28", "v2": "{}" }, { "k1": "2", "k2": "a", "v1": "34.21", "v2": "null" } ] } } ] }