Gather data from json file. (legally blind)

Forgive me for asking a question thats probably been asked many many times. However after going over the documentation im not able to understand it correctly. (I am legally blind and use a screen reader) I have a json file im trying to extract data but can’t seem to make heads or tails from the documentation as my screen reader isn’t formatting correctly. I have the below snippet of information that I would like to extract data from:

{"_id":"63b5cbe674b87e36c6fcacbc","eventType":"Meal Bolus","insulin":2.45,"created_at":"2023-01-04T18:56:34.661Z","date":1672858594661,"type":"NORMAL","isValid":true,"isSMB":false,"pumpId":1672848441099,"pumpType":"OMNIPOD_DASH","pumpSerial":"4241","carbs":56}

I am trying to extract: TYPE,INSULIN, EVENTYPE, DATE, CARBS.

I anyone can maybe give me an example of how I would extract this I would greatly appreciate it. You don’t have to demonstrate all just one or two and I can adapt to the rest. (im hoping :)) Thank you for your time and understanding.

There is a json example provided in the template editor under developer tools.

{% set my_test_json = {
  "temperature": 25,
  "unit": "°C"
} %}
The temperature is {{ my_test_json.temperature }} {{ my_test_json.unit }}.

You can use this same editor to build / test your own json template

Something like:

{% set jsontest = {"_id":"63b5cbe674b87e36c6fcacbc","eventType":"Meal Bolus","insulin":2.45,"created_at":"2023-01-04T18:56:34.661Z","date":1672858594661,"type":"NORMAL","isValid":true,"isSMB":false,"pumpId":1672848441099,"pumpType":"OMNIPOD_DASH","pumpSerial":"4241","carbs":56} %}

insuline = {{ jsontest.insulin }}

Hope it is usefull !

Thank you! Took me a bit to understand it. Thanks for the help.