Telegraf parsing for this simple expression?

I am having a hard time parsing this expression using the json_v2 parser:

{
    "machine" : "Some machine",
    "data" : [
        {   
            "label" : "Temperature",
            "value" : 5.6,
            "utc" : 1646322274
        }
    ]   
}

I would like the “machine” field to become a tag, and have the label become the key, and the value become the value in my table…

Any advice?

Please show us your plugin config snippet, how far you have got so far.