Three examples of different FHIR resource types with description
Certainly, here are three examples of different FHIR resource types, along with a brief description of each:
1. Patient Resource:
- Example 1: A Patient resource represents an individual patient's information within the healthcare system.
```json
{
"resourceType": "Patient",
"id": "example-patient-1",
"name": [
{
"family": "Smith",
"given": ["John"]
}
],
"gender": "male",
"birthDate": "1980-01-15",
"address": [
{
"use": "home",
"line": ["123 Main St"],
"city": "Anytown",
"state": "CA",
"postalCode": "12345"
}
]
}
```
2. Observation Resource:
- Example 2: An Observation resource represents a recorded healthcare observation, such as a lab result, vital sign, or other measurements.
```json
{
"resourceType": "Observation",
"id": "example-observation-1",
"status": "final",
"code": {
"coding": [
{
"system": "http://loinc.org",
"code": "789-8",
"display": "Platelet count"
}
],
"text": "Platelet Count"
},
"subject": {
"reference": "Patient/example-patient-1"
},
"effectiveDateTime": "2023-04-10T08:30:00Z",
"valueQuantity": {
"value": 250.0,
"unit": "x10^9/L",
"system": "http://unitsofmeasure.org",
"code": "10^9/L"
}
}
```
3. Practitioner Resource:
- Example 3: A Practitioner resource represents a healthcare professional, such as a doctor, nurse, or therapist, and their associated information.
```json
{
"resourceType": "Practitioner",
"id": "example-practitioner-1",
"name": [
{
"family": "Johnson",
"given": ["Alice"]
}
],
"identifier": [
{
"system": "http://example.org/provider-ids",
"value": "P12345"
}
],
"practitionerRole": [
{
"code": {
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/practitioner-role",
"code": "doctor",
"display": "Doctor"
}
]
},
"period": {
"start": "2019-01-01"
}
}
]
}
```
These examples showcase different FHIR resource types, including Patient, Observation, and Practitioner, each serving specific roles and representing various aspects of healthcare data. FHIR resources are structured in a standardized way to ensure interoperability and facilitate the exchange of healthcare information.
Comments
Post a Comment