NCPI FHIR Implementation Guide 0.2.0 - ci-build
NCPI FHIR Implementation Guide - Local Development build (v0.2.0). See the Directory of published versions
Raw ttl | Download
@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 xsd: <http://www.w3.org/2001/XMLSchema#> . # - resource ------------------------------------------------------------------- a fhir:Observation; fhir:nodeRole fhir:treeRoot; fhir:Resource.id [ fhir:value "family-relationship-example-2"]; # fhir:Resource.meta [ fhir:Meta.profile [ fhir:value "https://nih-ncpi.github.io/ncpi-fhir-ig/StructureDefinition/family-relationship"; fhir:index 0; fhir:link <https://nih-ncpi.github.io/ncpi-fhir-ig/StructureDefinition/family-relationship> ] ]; # fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "generated" ]; fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative: Observation</b><a name=\"family-relationship-example-2\"> </a></p><div style=\"display: inline-block; background-color: #d9e0e7; padding: 6px; margin: 4px; border: 1px solid #8da1b4; border-radius: 5px; line-height: 60%\"><p style=\"margin-bottom: 0px\">Resource Observation "family-relationship-example-2" </p><p style=\"margin-bottom: 0px\">Profile: <a href=\"StructureDefinition-family-relationship.html\">NCPI Family Relationship</a></p></div><p><b>status</b>: final</p><p><b>code</b>: family member <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"http://terminology.hl7.org/5.0.0/CodeSystem-v3-RoleCode.html\">RoleCode</a>#FAMMEMB)</span></p><p><b>subject</b>: <a href=\"Patient-patient-example-1.html\">Patient/patient-example-1</a> " SMITH"</p><p><b>focus</b>: <a href=\"Patient-patient-example-3.html\">Patient/patient-example-3</a> " SMITH"</p><p><b>value</b>: Child <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"http://terminology.hl7.org/5.0.0/CodeSystem-v3-RoleCode.html\">RoleCode</a>#CHILD "child")</span></p></div>" ]; # fhir:Observation.status [ fhir:value "final"]; # fhir:Observation.code [ fhir:CodeableConcept.coding [ fhir:index 0; fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v3-RoleCode" ]; fhir:Coding.code [ fhir:value "FAMMEMB" ]; fhir:Coding.display [ fhir:value "family member" ] ] ]; # fhir:Observation.subject [ fhir:Reference.reference [ fhir:value "Patient/patient-example-1" ] ]; # fhir:Observation.focus [ fhir:index 0; fhir:Reference.reference [ fhir:value "Patient/patient-example-3" ] ]; # fhir:Observation.valueCodeableConcept [ fhir:CodeableConcept.coding [ fhir:index 0; fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v3-RoleCode" ]; fhir:Coding.code [ fhir:value "CHILD" ]; fhir:Coding.display [ fhir:value "child" ] ]; fhir:CodeableConcept.text [ fhir:value "Child" ] ]. # # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl.