Sessions 0 And 1 - Introduction To HL7 FHIR And FHIR Principles Flashcards
What does FHIR stand for?
Fast Healthcare Interoperability Resources
What is FHIR based on?
Modern web tools like XML, JSON, RESTful APIs, and modular resources.
What does FHIR focus on?
The 20% of resources that cover 80% of use cases (e.g. Patient). For remaining use cases, extensions can be created.
What were previous versions of FHIR
HL7 v2, then v3, then CDA, then FHIR, now FHIR R4B.
How long should implementation of FHIR take?
Days or weeks. Not months or years, like previous versions.
Who was FHIR created for?
For implementers and developers. Not for clinicians.
What security measures are available?
HTTPS and OAuth
Every FHIR resource has
URL that identifies the resource
ID and metadata
Human readable XHTML summary
Defined data elements
Extensibility
every resource instance represented as either XML, JSON, or RDF. Currently 145 different Resource types.
FHIR supports multiple exchange paradigms, including:
RESTful APIs
Documents
Messaging
Services
Databases
What does RESTful stand for?
REpresentational State Transfer protocol
What is CRUD?
Create
Read
Update
Delete
How does CRUD relate to HTTP actions?
Create = Post
Read = Get
Update = Put
Delete = Delete
Is gender a resource?
No. It is a property of the Patient resource.
What is HTTP used for?
For transporting data across the web. RESTful API uses HTTP.
What are XML and JSON?
Formats for data transfers.