This page is part of the FHIR Specification (v1.4.0: STU 3 Ballot 3). The current version which supercedes this version is 5.0.0. For a full list of available versions, see the Directory of published versions
. Page versions: R5 R4B R4 R3
An example of an animal
@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/sct/> .
@prefix xs: <http://www.w3.org/2001/XMLSchema#> .
# - resource -------------------------------------------------------------------
<http://hl7.org/fhir//Patient/animal> a fhir:Patient;
fhir:nodeRole fhir:treeRoot;
fhir:Resource.id [ fhir:value "animal"];
fhir:DomainResource.text [
fhir:Narrative.status [ fhir:value "generated" ]
];
fhir:Patient.identifier [
fhir:index 0;
fhir:Identifier.type [
fhir:CodeableConcept.text [ fhir:value "Dog Tag" ] ];
fhir:Identifier.system [ fhir:value "http://www.maroondah.vic.gov.au/AnimalRegFees.aspx" ];
fhir:Identifier.value [ fhir:value "1234123" ];
fhir:Identifier.period [
fhir:Period.start [ fhir:value "2010-05-31"^^xs:date ] ];
fhir:Identifier.assigner [
fhir:Reference.display [ fhir:value "Maroondah City Council" ] ]
];
fhir:Patient.active [ fhir:value "true"^^xs:boolean];
fhir:Patient.name [
fhir:index 0;
fhir:HumanName.use [ fhir:value "usual" ];
fhir:HumanName.given [
fhir:value "Kenzi";
fhir:index 0 ]
];
fhir:Patient.gender [ fhir:value "female"];
fhir:Patient.birthDate [ fhir:value "2010-03-23"^^xs:date];
fhir:Patient.contact [
fhir:index 0;
fhir:Patient.contact.relationship [
fhir:index 0;
fhir:CodeableConcept.coding [
fhir:index 0;
fhir:Coding.system [ fhir:value "http://hl7.org/fhir/patient-contact-relationship" ];
fhir:Coding.code [ fhir:value "owner" ] ] ];
fhir:Patient.contact.name [
fhir:HumanName.family [
fhir:value "Chalmers";
fhir:index 0 ];
fhir:HumanName.given [
fhir:value "Peter";
fhir:index 0 ];
fhir:HumanName.given [
fhir:value "James";
fhir:index 1 ] ];
fhir:Patient.contact.telecom [
fhir:index 0;
fhir:ContactPoint.system [ fhir:value "phone" ];
fhir:ContactPoint.value [ fhir:value "(03) 5555 6473" ];
fhir:ContactPoint.use [ fhir:value "work" ] ]
];
fhir:Patient.animal [
fhir:Patient.animal.species [
fhir:CodeableConcept.coding [
fhir:index 0;
fhir:Coding.system [ fhir:value "http://hl7.org/fhir/animal-species" ];
fhir:Coding.code [ fhir:value "canislf" ];
fhir:Coding.display [ fhir:value "Dog" ] ] ];
fhir:Patient.animal.breed [
a sct:58108001;
fhir:CodeableConcept.coding [
fhir:index 0;
a sct:58108001;
fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
fhir:Coding.code [ fhir:value "58108001" ];
fhir:Coding.display [ fhir:value "Golden retriever" ] ];
fhir:CodeableConcept.coding [
fhir:index 1;
fhir:Coding.system [ fhir:value "http://hl7.org/fhir/animal-breed" ];
fhir:Coding.code [ fhir:value "gret" ];
fhir:Coding.display [ fhir:value "Golden Retriever" ] ] ];
fhir:Patient.animal.genderStatus [
fhir:CodeableConcept.coding [
fhir:index 0;
fhir:Coding.system [ fhir:value "http://hl7.org/fhir/animal-genderstatus" ];
fhir:Coding.code [ fhir:value "neutered" ] ] ]
];
fhir:Patient.managingOrganization [
fhir:Reference.display [ fhir:value "Pete's Vetinary Services" ]
].
# -------------------------------------------------------------------------------------
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.