fix: add children to array of struct (#17850)

This commit is contained in:
Ayush Shah 2024-09-16 18:02:17 +05:30 committed by GitHub
parent e78450a5ec
commit 23c6aa3ca5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1604,10 +1604,23 @@
},
{
"name": "shipping_address",
"dataType": "ARRAY",
"arrayDataType": "STRUCT",
"dataTypeDisplay": "array<struct<name:varchar(32),street_address:varchar(128), city:varchar(32),postcode:varchar(8)>>",
"tags": []
"dataType": "ARRAY",
"arrayDataType": "STRUCT",
"dataTypeDisplay": "array<struct<type:string,provider:array<int>>>",
"children": [
{
"dataType": "STRING",
"dataTypeDisplay": "string",
"name": "type"
},
{
"dataType": "ARRAY",
"arrayDataType": "INT",
"dataTypeDisplay": "array<int>",
"name": "provider"
}
],
"tags": []
},
{
"name": "orders",