add notes on definition schema

This commit is contained in:
Paul Trowbridge 2018-05-20 15:53:04 -04:00
parent d3114d5759
commit 809df3ef52

View File

@ -81,13 +81,14 @@ source definition
* no primary key? * no primary key?
* every document must work out to one row * every document must work out to one row
```
{ {
"name":"sample_name", "name":"sample_name",
"source":"client_file", "source":"client_file",
"loading_function":"csv" "loading_function":"csv"
"constrain":[ "constraint":[
"{date}", "{date}",
"{level1,item3,field}" "{doc,origin_addresses,0}"
], ],
"table_schema":[ "table_schema":[
{ {
@ -100,4 +101,4 @@ source definition
} }
] ]
} }
```