skip to Main Content

Extract value from a JSON array with no name

I have a table with a record that has JSON content and it is an array with no name. Sample data looks like this: carId carType parts Z003 Company [{"Value":"New","Type":"Brakes","Code":"D"},{"Value":"Upgraded","Type":"Doors","Code":"E1"}] Z003 Company [{"Value":null,"Type":"Brakes","Code":"D"},{"Value":null,"Type":"Doors","Code":"E1"}] Z003 Company [{"Value":"USed","Type":"Brakes","Code":"D"},{"Value":"New","Type":"Tires","Code":"G7"}] There are actually about…

VIEW QUESTION

Json – How to flatten a java object?

I've a Java object structure corresponding to following JSON: { "parentClass": { "parentField1": "parentFieldValue1", "parentField2": "parentFieldValue2", "childClass": { "childField1": "childFieldValue1", "childField2": "childFieldValue2" }, "childClassList": [ { "stringField": "stringField1", "integerField": "integerField1" }, { "stringField": "stringField2", "integerField": "integerField2" } ] } }…

VIEW QUESTION

Azure – How to Expand JSON data in powerBI?

I am trying to read a JSON file in powerBI whose data looks like this, But when I expend the column timeseries.data, I can only see 'timestamp' column instead of 'timestamp' and 'average' "cost": 44639, "timespan": "2023-02-10T23:59:59Z/2023-03-13T23:59:59Z", "interval": "PT1H", "value":…

VIEW QUESTION

Unflatten JSON response – Javascript

I have this JSON response, I want to unflatten it, but every possible unflatten library just append it to array, I want to highlight to have 3 object like shown, is there any easier way? { "highlights.id": ["9ab80883-e8eb-4710-9818-e476fc32e356", "824ff2a0-1f17-44b7-b99f-ce227af12ea7", "4a9e35c5-e03f-41d6-a4b5-635b08bc1bbe",…

VIEW QUESTION
Back To Top
Search