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:ValueSet; 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\"><ul><li>Include all codes defined in <a href=\"http://hl7.org/fhir/R4/CodeSystem-species.html\"><code>http://fhir.kids-first.io/CodeSystem/species</code></a></li></ul></div>" ]; fhir:ValueSet.url [ fhir:value "http://fhir.kids-first.io/ValueSet/species"]; fhir:ValueSet.version [ fhir:value "0.1.0"]; fhir:ValueSet.name [ fhir:value "species"]; fhir:ValueSet.title [ fhir:value "Species"]; fhir:ValueSet.status [ fhir:value "draft"]; fhir:ValueSet.experimental [ fhir:value "false"^^xsd:boolean]; fhir:ValueSet.date [ fhir:value "2020-07-20T20:58:16+00:00"^^xsd:dateTime]; fhir:ValueSet.publisher [ fhir:value "Kids First DRC"]; fhir:ValueSet.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:ValueSet.description [ fhir:value "Species of the Kids First DRC Patient."]; fhir:ValueSet.compose [ fhir:ValueSet.compose.include [ fhir:index 0; fhir:ValueSet.compose.include.system [ fhir:value "http://fhir.kids-first.io/CodeSystem/species" ] ] ]. # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl.