Details
-
Task
-
Resolution: Done
-
Major - P3
-
None
-
None
-
None
-
5
-
Iteration Xiaolongbao
Description
current output:
{
|
"name": "city", |
"path": "address.city", |
"count": 0, |
"field_type": null, |
"probability": null, |
"has_duplicates": true, |
"types": [ |
{
|
"name": "String", |
"path": "address.city", |
"count": 99, |
"bsonType": "String", |
"probability": null, |
"values": [ |
{
|
"Str": "El Paso, Texas" |
},
|
{
|
"Str": "El Paso, Texas" |
},
|
]
|
}
|
]
|
},
|
{
|
"name": "street", |
"path": "address.street", |
"count": 0, |
"field_type": null, |
"probability": null, |
"has_duplicates": false, |
"types": [ |
{
|
"name": "String", |
"path": "address.street", |
"count": 99, |
"bsonType": "String", |
"probability": null, |
"values": [ |
{
|
"Str": "133 Aloha Ave" |
},
|
{
|
"Str": "290 East George Rd" |
}
|
]
|
}
|
]
|
}
|
expected output:
{
|
"name": "address", |
"path": "address", |
"count": 100, |
"types": [{ |
"name": "Document", |
"bsonType": "Document", |
"path": "address", |
"count": 100, |
"fields": [ |
{
|
"name": "city", |
"path": "address.city", |
"count": 100, |
"types": [{ |
"name": "String", |
"bsonType": "String", |
"path": "address.city", |
"count": 100, |
"values": ["El Paso, Texas", "El Paso, Texas"] |
}]
|
}, {
|
"name": "street", |
"path": "address.street", |
"count": 100, |
"types": [{ |
"name": "String", |
"bsonType": "String", |
"path": "address.street", |
"count": 100, |
"values": ["133 Aloha Ave", "290 East George Rd"] |
}]
|
}]
|
}]
|
}
|
|