
This Implementation guide is published and maintained by NRCeS for NHA.
This version is based on the ABDM Health Data Interchange Specifications 1.0 and updated periodically.
Turtle Format: Appointment-example-01
Download Raw ttl
@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-01"];
fhir:Resource.meta [
fhir:Meta.profile [
fhir:value "https://nrces.in/ndhm/fhir/r4/StructureDefinition/Appointment";
fhir:index 0;
fhir:link <https://nrces.in/ndhm/fhir/r4/StructureDefinition/Appointment> ]
];
fhir:DomainResource.text [
fhir:Narrative.status [ fhir:value "generated" ];
fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\">Follow up for further consultation</div>"
];
fhir:Appointment.status [ fhir:value "booked"];
fhir:Appointment.serviceCategory [
fhir:index 0;
fhir:CodeableConcept.coding [
fhir:index 0;
a sct:408443003;
fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
fhir:Coding.code [ fhir:value "408443003" ];
fhir:Coding.display [ fhir:value "General medical practice" ] ]
];
fhir:Appointment.serviceType [
fhir:index 0;
fhir:CodeableConcept.coding [
fhir:index 0;
a sct:11429006;
fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
fhir:Coding.code [ fhir:value "11429006" ];
fhir:Coding.display [ fhir:value "Consultation" ] ]
];
fhir:Appointment.appointmentType [
fhir:CodeableConcept.coding [
fhir:index 0;
a sct:185389009;
fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
fhir:Coding.code [ fhir:value "185389009" ];
fhir:Coding.display [ fhir:value "Follow-up visit" ] ]
];
fhir:Appointment.reasonReference [
fhir:index 0;
fhir:Reference.reference [ fhir:value "Condition/1" ]
];
fhir:Appointment.description [ fhir:value "Discussion on the results of your recent Lab Test and further consultation"];
fhir:Appointment.start [ fhir:value "2020-07-12T09:00:00Z"^^xsd:dateTime];
fhir:Appointment.end [ fhir:value "2020-07-12T09:30:00Z"^^xsd:dateTime];
fhir:Appointment.created [ fhir:value "2020-07-09T14:58:58.181+05:30"^^xsd:dateTime];
fhir:Appointment.participant [
fhir:index 0;
fhir:Appointment.participant.actor [
fhir:Reference.reference [ fhir:value "Patient/1" ] ];
fhir:Appointment.participant.status [ fhir:value "accepted" ]
], [
fhir:index 1;
fhir:Appointment.participant.actor [
fhir:Reference.reference [ fhir:value "Practitioner/1" ] ];
fhir:Appointment.participant.status [ fhir:value "accepted" ]
].
# - ontology header ------------------------------------------------------------
a owl:Ontology;
owl:imports fhir:fhir.ttl.