I don’t know about you, but I find it frustrating to try and get complex JSON or d right when trying to build it “by hand”. There are just too many things that can go wrong: forgotten commas, unbalanced brackets, and so forth. Fortunately, JSON (we’ll focus on JSON here) is a fundamentally simple format. Objects consist of key/value pairs where the keys are always strings, and the values are one of: a string a number the special values true, false or null another object an array consisting of items of any of these types (including this one) This translates very naturally into Python, where dictionaries and lists are basic data types. To illustrate, let’s take a relatively simple FHIR resource, a condition: { “resourceType”:…