Forum Discussion

BelugaPhil's avatar
BelugaPhil
New Member
2 years ago
Solved

Null values in flattened JSON

I'm simply trying to extract JSON data from a single column in an Eventstream. I define the schema and parse the column but it yields null values in the table. I have verified that the JSON is proper...
  • JohanLudvig's avatar
    JohanLudvig
    2 years ago

    One way to verify if you get a correct JSON from Event hub is to do a data dump into a KQL table with a Dynamic column that takes the whole JSON object.

     

    Then try something like this

    | TempJSONTable 
    print extract_json("$.boundQueryResult", json, typeof(string));