-
-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy path3_xpathdynamic.schema.json
35 lines (35 loc) · 1.33 KB
/
3_xpathdynamic.schema.json
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
28
29
30
31
32
33
34
35
{
"parser_settings": {
"version": "omni.2.1",
"file_format_type": "json"
},
"transform_declarations": {
"FINAL_OUTPUT": { "xpath": "/*", "object": {
"order_info": { "object": {
"order_items": { "array": [
{ "xpath": "line_items/*", "object": {
"id": { "xpath": "id", "type": "int" },
"color": { "xpath_dynamic": {
"custom_func": {
"name": "concat",
"args": [
{ "const": "product/variant/option" },
{ "xpath": "product/options/*[name='color/pattern']/index" }
]
}
}},
"size": { "xpath_dynamic": {
"custom_func": {
"name": "concat",
"args": [
{ "const": "product/variant/option" },
{ "xpath": "product/options/*[name='Size']/index" }
]
}
}}
}}
]}
}}
}}
}
}