Data Integration
- Data Integration
- All Products
[ { "vehicle": [ { "make": "Toyota", "model": "Corolla", "insurance": { "company": "Allstate", "policy_num": "AS12876" }, "maintenance": [ { "date": "01/01/2020", "description": ["oil filter1", "oil filter2"] }, { "date": "01/08/2020", "description": ["tire rotation1", "tire rotation2"] } ] }, { "make": "Toyota", "model": "RAV4", "insurance": { "company": "Allstate", "policy_num": "AS2033" }, "maintenance": [ { "date": "01/02/2020", "description": ["air filter replacement1", "air filter replacement2"] }, { "date": "01/08/2020", "description": ["battery replacement1", "battery replacement2"] } ] } ] } ]
{ "vehicle":{ "make":"Toyota", "model":"Corolla", "insurance":{ "company":"Allstate", "policy_num":"AS12876" }, "maintenance":[ { "date":"01/08/2020", "description":["tire rotation2","tire rotation1"] }, { "date":"01/01/2020", "description":["oil filter2","oil filter1"] } ] } } { "vehicle":{ "make":"Toyota", "model":"RAV4", "insurance":{ "company":"Allstate", "policy_num":"AS2033" }, "maintenance":[ { "date":"01/08/2020", "description":["battery replacement2","battery replacement1"] }, { "date":"01/02/2020", "description":["air filter replacement2","air filter replacement1"] } ] } }