HL7中国FHIR Connectathon测试实施指南
V20230304 - release
HL7中国FHIR Connectathon测试实施指南 - Local Development build (vV20230304). See the Directory of published versions
@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:Specimen;
fhir:nodeRole fhir:treeRoot;
fhir:Resource.id [ fhir:value "Covid19SpecimenExample01"];
fhir:Resource.meta [
fhir:Meta.profile [
fhir:value "http://hl7.org.cn/fhir/StructureDefinition/profile-covid19-specimen";
fhir:index 0;
fhir:link <http://hl7.org.cn/fhir/StructureDefinition/profile-covid19-specimen> ]
];
fhir:DomainResource.text [
fhir:Narrative.status [ fhir:value "generated" ];
fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative</b></p><p><b>identifier</b>: id: SP235603</p><p><b>status</b>: available</p><p><b>type</b>: <span title=\"Codes: {http://snomed.info/sct 258529004}\">咽拭子</span></p><p><b>subject</b>: <a href=\"Patient-PatientExample01.html\">Generated Summary: active; 张三; Phone: 010-1234567; gender: female; birthDate: 1955-10-25</a></p><p><b>receivedTime</b>: 2022年5月20日 下午6:45:50</p><h3>Collections</h3><table class=\"grid\"><tr><td>-</td><td><b>Collector</b></td><td><b>Collected[x]</b></td></tr><tr><td>*</td><td><a href=\"Practitioner-PractitionerExample01.html\">Generated Summary: 赵勇; gender: male</a></td><td>2022年5月20日 下午5:45:50</td></tr></table></div>"
];
fhir:Specimen.identifier [
fhir:index 0;
fhir:Identifier.value [ fhir:value "SP235603" ]
];
fhir:Specimen.status [ fhir:value "available"];
fhir:Specimen.type [
fhir:CodeableConcept.coding [
fhir:index 0;
a sct:258529004;
fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
fhir:Coding.code [ fhir:value "258529004" ];
fhir:Coding.display [ fhir:value "咽拭子" ] ]
];
fhir:Specimen.subject [
fhir:Reference.reference [ fhir:value "Patient/PatientExample01" ]
];
fhir:Specimen.receivedTime [ fhir:value "2022-05-20T18:45:50+08:00"^^xsd:dateTime];
fhir:Specimen.collection [
fhir:Specimen.collection.collector [
fhir:Reference.reference [ fhir:value "Practitioner/PractitionerExample01" ] ];
fhir:Specimen.collection.collectedDateTime [ fhir:value "2022-05-20T17:45:50+08:00"^^xsd:dateTime ]
].
# - ontology header ------------------------------------------------------------
a owl:Ontology;
owl:imports fhir:fhir.ttl.