- All the fhir resource Instances are in the
records
folder
- Practitioner
- Location
- Organization
"description": "Measurements and simple assertions made about a patient, device or other subject"
"description": "A clinical condition, problem, ?diagnosis?, or other event, situation, issue, or clinical concept that has risen to a level of concern.",
"description": "An action that is or was performed on or for a patient. This can be a physical intervention like an operation, or less invasive like long term services, counseling, or hypnotherapy.",
*The boundaries between clinical findings and disorders remains a challenge in medical ontology. Refer the Boundaries section below and in Condition for general guidance. These boundaries can be clarified by profiling Observation for a particular use case.
*from fhir-Observation documentation
Ovet usage of ImmunizationRecommendation:
- patient DogFido received rabbies immunization today
- Next shot recomended in 3 years
- No apointment is taken
- Therefore, the recommendation lives alonside the patient.
- in 3 years, this information pushes a notif to the patient:
"hey, take an apointement for DogFido 🐶 rabies"
- and to everyone who might be concerned: Vet, Partner, VetClinic, ....
References
- Patient
- Organization
- Immunization
- ImmunizationEvaluation
Referenced by:
- Appointment
- DiagnosticReport
- Encounter
- MedicationRequest
- Observation
graph LR
%% Class definitions
classDef others fill:#f9f,stroke:#333,stroke-width:2px,font-size:16px;
classDef irNode fill:#cff,stroke:#333,stroke-width:1px,font-size:10px;
%% Nodes
ir[immunizationRecommendation]:::irNode
enc[Encounter]:::others
obs[Observation]:::others
dr[Diagnostic Report]:::others
mr[MedicationRequest]:::others
ap[apointment]:::others
pat[Patient]
org[Organization]
i[Immunization]
ie[ImmunizationEvaluation]
%% Relationships
enc -- references --> ir
obs -- references --> ir
dr -- references --> ir
mr -- references --> ir
ap -- reference --> ir
ir -- references --> pat
ir -- references --> org
ir -- references --> i
ir -- references --> ie