fixed typo, added note on matching schema requirement for unioned data sources

This commit is contained in:
Igal Levy 2014-11-11 11:56:22 -08:00
parent 34a6f7f7ca
commit de7fb5a690
1 changed files with 5 additions and 2 deletions

View File

@ -12,7 +12,7 @@ The table data source is the most common type. It's represented by a string, or
```json
{
"type": "table",
"name": <string_value>
"name": "<string_value>"
}
```
@ -22,10 +22,13 @@ This data source unions two or more table data sources.
```json
{
"type": "union",
"dataSources": ["<string_value1>", "<string_value2>", "<string_value3>", ... ]]
"dataSources": ["<string_value1>", "<string_value2>", "<string_value3>", ... ]
}
```
Note that the data sources being unioned should have the same schema.
### Query Data Source
```json
{