Example
Appointment/example
(Turtle)
Raw
Raw
Turtle
(+
also
see
JSON
Turtle/RDF
Format
Specification
)
Definition
for
Code
System
MatchGrade
General
Person
Example
{
"resourceType" : "CodeSystem",
"id" : "match-grade",
"meta" : {
"lastUpdated" : "2019-11-01T09:29:23.356+11:00"
},
"text" : {
"status" : "generated",
"div" : "<div>!-- Snipped for Brevity --></div>"
},
"url" : "http://terminology.hl7.org/CodeSystem/match-grade",
"identifier" : [{
"system" : "urn:ietf:rfc:3986",
"value" : "urn:oid:2.16.840.1.113883.4.642.4.1289"
}],
"version" : "4.0.1",
"name" : "MatchGrade",
"title" : "MatchGrade",
"status" : "draft",
"experimental" : false,
"date" : "2019-11-01T09:29:23+11:00",
"publisher" : "HL7 (FHIR Project)",
"contact" : [{
"telecom" : [{
"system" : "url",
"value" : "http://hl7.org/fhir"
},
{
"system" : "email",
"value" : "fhir@lists.hl7.org"
}]
}],
"description" : "A Master Patient Index (MPI) assessment of whether a candidate patient record is a match or not.",
"caseSensitive" : true,
"valueSet" : "http://hl7.org/fhir/ValueSet/match-grade",
"content" : "complete",
"concept" : [{
"code" : "certain",
"display" : "Certain Match",
"definition" : "This record meets the matching criteria to be automatically considered as a full match."
},
{
"code" : "probable",
"display" : "Probable Match",
"definition" : "This record is a close match, but not a certain match. Additional review (e.g. by a human) may be required before using this as a match."
},
{
"code" : "possible",
"display" : "Possible Match",
"definition" : "This record may be a matching one. Additional review (e.g. by a human) SHOULD be performed before using this as a match."
},
{
"code" : "certainly-not",
"display" : "Certainly Not a Match",
"definition" : "This record is known not to be a match. Note that usually non-matching records are not returned, but in some cases records previously or likely considered as a match may specifically be negated by the matching engine."
}]
}
@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sct: <http://snomed.info/id/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
# - resource -------------------------------------------------------------------
[a fhir:Appointment;
fhir:nodeRole fhir:treeRoot;
fhir:Resource.id [ fhir:value "example"]; #
fhir:DomainResource.text [
fhir:Narrative.status [ fhir:value "generated" ];
fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\">Brian MRI results discussion</div>"
]; #
fhir:Appointment.status [ fhir:value "booked"]; #
fhir:Appointment.class [
fhir:index 0;
fhir:CodeableConcept.coding [
fhir:index 0;
fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v3-ActCode" ];
fhir:Coding.code [ fhir:value "AMB" ];
fhir:Coding.display [ fhir:value "ambulatory" ]
]
]; #
fhir:Appointment.serviceCategory [
fhir:index 0;
fhir:CodeableConcept.coding [
fhir:index 0;
fhir:Coding.system [ fhir:value "http://example.org/service-category" ];
fhir:Coding.code [ fhir:value "gp" ];
fhir:Coding.display [ fhir:value "General Practice" ]
]
]; #
fhir:Appointment.serviceType [
fhir:index 0;
fhir:CodeableReference.concept [
fhir:CodeableConcept.coding [
fhir:index 0;
fhir:Coding.code [ fhir:value "52" ];
fhir:Coding.display [ fhir:value "General Discussion" ]
]
]
]; #
fhir:Appointment.specialty [
fhir:index 0;
fhir:CodeableConcept.coding [
fhir:index 0;
a sct:394814009;
fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
fhir:Coding.code [ fhir:value "394814009" ];
fhir:Coding.display [ fhir:value "General practice" ]
]
]; #
fhir:Appointment.appointmentType [
fhir:CodeableConcept.coding [
fhir:index 0;
fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v2-0276" ];
fhir:Coding.code [ fhir:value "FOLLOWUP" ];
fhir:Coding.display [ fhir:value "A follow up visit from a previous appointment" ]
]
]; #
fhir:Appointment.reason [
fhir:index 0;
fhir:CodeableReference.reference [
fhir:Reference.reference [ fhir:value "Condition/example" ];
fhir:Reference.display [ fhir:value "Severe burn of left ear" ]
]
]; #
fhir:Appointment.description [ fhir:value "Discussion on the results of your recent MRI"]; # <priority value="5" />
fhir:Appointment.start [ fhir:value "2013-12-10T09:00:00Z"^^xsd:dateTime]; #
fhir:Appointment.end [ fhir:value "2013-12-10T11:00:00Z"^^xsd:dateTime]; #
fhir:Appointment.created [ fhir:value "2013-10-10"^^xsd:date]; #
fhir:Appointment.note [
fhir:index 0;
fhir:Annotation.text [ fhir:value "Further expand on the results of the MRI and determine the next actions that may be appropriate." ]
]; #
fhir:Appointment.patientInstruction [
fhir:index 0;
fhir:CodeableReference.concept [
fhir:CodeableConcept.text [ fhir:value "Please avoid excessive travel (specifically flying) before this appointment" ]
]
]; #
fhir:Appointment.basedOn [
fhir:index 0;
fhir:Reference.reference [ fhir:value "ServiceRequest/myringotomy" ]
]; #
fhir:Appointment.subject [
fhir:Reference.reference [ fhir:value "Patient/example" ];
fhir:Reference.display [ fhir:value "Peter James Chalmers" ]
]; #
fhir:Appointment.participant [
fhir:index 0;
fhir:Appointment.participant.actor [
fhir:Reference.reference [ fhir:value "Patient/example" ];
fhir:Reference.display [ fhir:value "Peter James Chalmers" ]
];
fhir:Appointment.participant.required [ fhir:value "true"^^xsd:boolean ];
fhir:Appointment.participant.status [ fhir:value "accepted" ]
], [
fhir:index 1;
fhir:Appointment.participant.type [
fhir:index 0;
fhir:CodeableConcept.coding [
fhir:index 0;
fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v3-ParticipationType" ];
fhir:Coding.code [ fhir:value "ATND" ]
]
];
fhir:Appointment.participant.actor [
fhir:Reference.reference [ fhir:value "Practitioner/example" ];
fhir:Reference.display [ fhir:value "Dr Adam Careful" ]
];
fhir:Appointment.participant.required [ fhir:value "true"^^xsd:boolean ];
fhir:Appointment.participant.status [ fhir:value "accepted" ]
], [
fhir:index 2;
fhir:Appointment.participant.actor [
fhir:Reference.reference [ fhir:value "Location/1" ];
fhir:Reference.display [ fhir:value "South Wing, second floor" ]
];
fhir:Appointment.participant.required [ fhir:value "true"^^xsd:boolean ];
fhir:Appointment.participant.status [ fhir:value "accepted" ]
]] . #
# - ontology header ------------------------------------------------------------
[a owl:Ontology;
owl:imports fhir:fhir.ttl] .
# -------------------------------------------------------------------------------------
Usage
note:
every
effort
has
been
made
to
ensure
that
the
examples
are
correct
and
useful,
but
they
are
not
a
normative
part
of
the
specification.