Kids First Implementation Guide
0.1.0 - CI Build
Kids First Implementation Guide - Local Development build (v0.1.0). 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 xsd: <http://www.w3.org/2001/XMLSchema#> . # - resource ------------------------------------------------------------------- a fhir:CodeSystem; fhir:nodeRole fhir:treeRoot; fhir:Resource.id [ fhir:value "species"]; fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "generated" ]; fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p>This code system http://fhir.kids-first.io/CodeSystem/species defines the following codes:</p><table class=\"codes\"><tr><td style=\"white-space:nowrap\"><b>Code</b></td><td><b>Display</b></td><td><b>Definition</b></td></tr><tr><td style=\"white-space:nowrap\">337915000<a name=\"species-337915000\"> </a></td><td>Homo sapiens</td><td>Human.</td></tr><tr><td style=\"white-space:nowrap\">448771007<a name=\"species-448771007\"> </a></td><td>Canis lupus subspecies familiaris</td><td>Domestic dog.</td></tr></table></div>" ]; fhir:CodeSystem.url [ fhir:value "http://fhir.kids-first.io/CodeSystem/species"]; fhir:CodeSystem.version [ fhir:value "0.1.0"]; fhir:CodeSystem.name [ fhir:value "species"]; fhir:CodeSystem.title [ fhir:value "Species"]; fhir:CodeSystem.status [ fhir:value "draft"]; fhir:CodeSystem.experimental [ fhir:value "false"^^xsd:boolean]; fhir:CodeSystem.date [ fhir:value "2020-07-20T20:58:16+00:00"^^xsd:dateTime]; fhir:CodeSystem.publisher [ fhir:value "Kids First DRC"]; fhir:CodeSystem.contact [ fhir:index 0; fhir:ContactDetail.name [ fhir:value "Kids First DRC" ]; fhir:ContactDetail.telecom [ fhir:index 0; fhir:ContactPoint.system [ fhir:value "email" ]; fhir:ContactPoint.value [ fhir:value "mailto:support@kidsfirstdrc.org" ] ] ]; fhir:CodeSystem.description [ fhir:value "Species of the Kids First DRC Patient, imported from http://snomed.info/sct."]; fhir:CodeSystem.caseSensitive [ fhir:value "true"^^xsd:boolean]; fhir:CodeSystem.content [ fhir:value "complete"]; fhir:CodeSystem.count [ fhir:value "2"^^xsd:nonNegativeInteger]; fhir:CodeSystem.concept [ fhir:index 0; fhir:CodeSystem.concept.code [ fhir:value "337915000" ]; fhir:CodeSystem.concept.display [ fhir:value "Homo sapiens" ]; fhir:CodeSystem.concept.definition [ fhir:value "Human." ] ], [ fhir:index 1; fhir:CodeSystem.concept.code [ fhir:value "448771007" ]; fhir:CodeSystem.concept.display [ fhir:value "Canis lupus subspecies familiaris" ]; fhir:CodeSystem.concept.definition [ fhir:value "Domestic dog." ] ]. # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl.