-
-
Notifications
You must be signed in to change notification settings - Fork 81
Expand file tree
/
Copy path2_fixed_multi_row.schema.json
More file actions
27 lines (27 loc) · 794 Bytes
/
2_fixed_multi_row.schema.json
File metadata and controls
27 lines (27 loc) · 794 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"parser_settings": {
"version": "omni.2.1",
"file_format_type": "csv2"
},
"file_declaration": {
"delimiter": ",",
"records": [
{
"rows": 2,
"columns": [
{ "name": "COL1", "index": 3, "line_index": 1 },
{ "name": "COL2", "index": 4, "line_index": 1 },
{ "name": "COL3", "index": 1, "line_index": 2 },
{ "name": "COL4", "index": 2, "line_index": 2 }
]}
]
},
"transform_declarations": {
"FINAL_OUTPUT": { "object": {
"col1": { "xpath": "COL1" },
"col2": { "xpath": "COL2" },
"col3": { "xpath": "COL3" },
"col4": { "xpath": "COL4" }
}}
}
}