@prefix fhir: .
@prefix owl: .
@prefix rdfs: .
@prefix xsd: .
# - resource -------------------------------------------------------------------
a fhir:Patient;
fhir:nodeRole fhir:treeRoot;
fhir:Resource.id [ fhir:value "hi-testdata-gainey-bert"];
fhir:Resource.meta [
fhir:Meta.profile [
fhir:value "http://ns.electronichealth.net.au/fhir/StructureDefinition/dh-patient-core-1";
fhir:index 0;
fhir:link
]
];
fhir:DomainResource.text [
fhir:Narrative.status [ fhir:value "generated" ];
fhir:Narrative.div "\n
Bert Gainey
\n
Address
\n
\n \n Line | \n 197 Woodstock Pl | \n
\n \n City | \n CANBERRA AIRPORT | \n
\n \n State | \n ACT | \n
\n \n Postcode | \n 2609 | \n
\n
\n
Identifiers
\n
Primary
\n
\n \n IHI | \n 8003608833564727 | \n
\n \n IHI Status | \n active | \n
\n \n IHI Record Status | \n verified | \n
\n
\n
Secondary
\n
\n \n Medicare Number | \n 2953307031 | \n
\n \n IRN | \n 1 | \n
\n
\n
"
];
fhir:Patient.identifier [
fhir:index 0;
fhir:Element.extension [
fhir:index 0;
fhir:Extension.url [ fhir:value "http://hl7.org.au/fhir/StructureDefinition/ihi-status" ];
fhir:Extension.valueCoding [
fhir:Coding.system [ fhir:value "https://healthterminologies.gov.au/fhir/CodeSystem/ihi-status-1" ];
fhir:Coding.code [ fhir:value "active" ]
]
], [
fhir:index 1;
fhir:Extension.url [ fhir:value "http://hl7.org.au/fhir/StructureDefinition/ihi-record-status" ];
fhir:Extension.valueCoding [
fhir:Coding.system [ fhir:value "https://healthterminologies.gov.au/fhir/CodeSystem/ihi-record-status-1" ];
fhir:Coding.code [ fhir:value "verified" ]
]
];
fhir:Identifier.use [ fhir:value "official" ];
fhir:Identifier.type [
fhir:CodeableConcept.coding [
fhir:index 0;
fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v2-0203" ];
fhir:Coding.code [ fhir:value "NI" ];
fhir:Coding.userSelected [ fhir:value "false"^^xsd:boolean ]
]
];
fhir:Identifier.system [ fhir:value "http://ns.electronichealth.net.au/id/hi/ihi/1.0" ];
fhir:Identifier.value [ fhir:value "8003608833564727" ]
], [
fhir:index 1;
fhir:Identifier.use [ fhir:value "secondary" ];
fhir:Identifier.type [
fhir:CodeableConcept.coding [
fhir:index 0;
fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v2-0203" ];
fhir:Coding.code [ fhir:value "MC" ];
fhir:Coding.userSelected [ fhir:value "false"^^xsd:boolean ]
]
];
fhir:Identifier.system [ fhir:value "http://ns.electronichealth.net.au/id/medicare-number" ];
fhir:Identifier.value [ fhir:value "29533070311" ];
fhir:Identifier.period [
fhir:Period.end [ fhir:value "2023-11-30"^^xsd:date ]
]
];
fhir:Patient.name [
fhir:index 0;
fhir:HumanName.use [ fhir:value "usual" ];
fhir:HumanName.text [ fhir:value "Bert Gainey" ];
fhir:HumanName.family [ fhir:value "Gainey" ]
];
fhir:Patient.gender [ fhir:value "male"];
fhir:Patient.birthDate [ fhir:value "1971-09-24"^^xsd:date];
fhir:Patient.address [
fhir:index 0;
fhir:Address.use [ fhir:value "home" ];
fhir:Address.line [
fhir:value "197 Woodstock Pl";
fhir:index 0
];
fhir:Address.city [ fhir:value "CANBERRA AIRPORT" ];
fhir:Address.state [ fhir:value "ACT" ];
fhir:Address.postalCode [ fhir:value "2609" ]
] .
# - ontology header ------------------------------------------------------------
a owl:Ontology;
owl:imports fhir:fhir.ttl .
# -------------------------------------------------------------------------------------