This page is part of the FHIR Specification (v5.0.0-ballot: FHIR R5 Ballot Preview). The current version which supercedes this version is 5.0.0. For a full list of available versions, see the Directory of published versions
Clinical Genomics Work Group | Maturity Level: N/A | Standards Status: Informative | Compartments: Patient |
Raw Turtle (+ also see Turtle/RDF Format Specification)
Group - A group of a trio study including proband, mother, and father
@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:Group; fhir:nodeRole fhir:treeRoot; fhir:Resource.id [ fhir:value "groupDenovoFamily"]; fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "additional" ]; fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n <p> Denovo mutation study members </p> \n <ul> \n <li> Patient: Child Junior Doe</li> \n <li> Mother: Jane Mother Doe</li> \n <li> Father: John Father Doe</li> \n </ul> \n </div>" ]; fhir:Group.identifier [ fhir:index 0; fhir:Identifier.use [ fhir:value "temp" ]; 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 "MR" ]; fhir:Coding.display [ fhir:value "Medical record number" ] ] ]; fhir:Identifier.system [ fhir:value "http://www.somesystemabc.net/identifiers/groups" ]; fhir:Identifier.value [ fhir:value "11111" ]; fhir:Identifier.period [ fhir:Period.start [ fhir:value "2021-01-01"^^xsd:date ] ]; fhir:Identifier.assigner [ fhir:Reference.display [ fhir:value "Child Hospital" ] ] ]; fhir:Group.active [ fhir:value "true"^^xsd:boolean]; fhir:Group.type [ fhir:value "person"]; fhir:Group.membership [ fhir:value "enumerated"]; fhir:Group.name [ fhir:value "Denovo Mutation Example Group"]; fhir:Group.description [ fhir:value "[markdown]"]; fhir:Group.quantity [ fhir:value "3"^^xsd:nonNegativeInteger]; fhir:Group.managingEntity [ fhir:Reference.reference [ fhir:value "Practitioner/practitioner02" ] ]; fhir:Group.member [ fhir:index 0; fhir:Group.member.entity [ fhir:Reference.reference [ fhir:value "Patient/proband" ] ]; fhir:Group.member.period [ fhir:Period.start [ fhir:value "2021-01-01T01:01:10-06:00"^^xsd:dateTime ] ]; fhir:Group.member.inactive [ fhir:value "false"^^xsd:boolean ] ], [ fhir:index 1; fhir:Group.member.entity [ fhir:Reference.reference [ fhir:value "RelatedPerson/relatedPersonDenovoMother" ] ]; fhir:Group.member.period [ fhir:Period.start [ fhir:value "2021-01-01T01:01:10-06:00"^^xsd:dateTime ] ]; fhir:Group.member.inactive [ fhir:value "false"^^xsd:boolean ] ], [ fhir:index 2; fhir:Group.member.entity [ fhir:Reference.reference [ fhir:value "RelatedPerson/relatedPersonDenovoFather" ] ]; fhir:Group.member.period [ fhir:Period.start [ fhir:value "2021-01-01T01:01:10-06:00"^^xsd:dateTime ] ]; fhir:Group.member.inactive [ fhir:value "false"^^xsd:boolean ] ]] . # - ontology header ------------------------------------------------------------ [a owl:Ontology; owl:imports fhir:fhir.ttl] . # -------------------------------------------------------------------------------------
Usage note: every effort has been made to ensure that the examples are correct and useful, but they are not a normative part of the specification.