From pipes to the web
HL7 v2, from the previous lesson, is a pipe-delimited text format designed before the web. FHIR (Fast Healthcare Interoperability Resources), first published by HL7 in 2014 and led by Grahame Grieve, was a deliberate reset: keep the practical, implementer-first spirit of v2, but build on ordinary web technology.
That means three things a web developer already knows: data as resources, exchanged over a REST API, in JSON (or XML). No custom delimiters, no positional parsing. If you can call a REST endpoint and read JSON, you can read FHIR. This is why FHIR is the standard now mandated for new work, especially patient-facing apps and payer-to-provider exchange. FHIR is pronounced "fire".

