AnVIL Implementation Guide
0.1.0 - CI Build

AnVIL Implementation Guide - Local Development build (v0.1.0). See the Directory of published versions

AnvilResearchSubjectExample - TTL Representation

(back to description)

Raw ttl

Source view

@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:ResearchSubject;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "any-subject-id"];
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "http://theanvil.io/fhir/anvil/StructureDefinition/anvil-research-subject";
       fhir:index 0;
       fhir:link <http://theanvil.io/fhir/anvil/StructureDefinition/anvil-research-subject>     ]
  ];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative with Details</b></p><p><b>id</b>: any-subject-id</p><p><b>meta</b>: </p><p><b>status</b>: on-study</p><p><b>study</b>: <a href=\"ResearchStudy-any-project-id.html\">Generated Summary: id: any-project-id; title: my-project-title; status: active</a></p><p><b>individual</b>: <a href=\"Patient-any-patient-id.html\">Generated Summary: id: any-patient-id; </a></p></div>"
  ];
  fhir:DomainResource.extension [
     fhir:index 0;
     fhir:Extension.url [ fhir:value "http://theanvil.io/fhir/anvil/StructureDefinition/anvil-document-reference" ];
     fhir:Extension.valueReference [
       fhir:Reference.reference [ fhir:value "Attachment/DRSAttachmentExample" ]     ]
  ];
  fhir:ResearchSubject.status [ fhir:value "on-study"];
  fhir:ResearchSubject.study [
     fhir:Reference.reference [ fhir:value "ResearchStudy/any-project-id" ]
  ];
  fhir:ResearchSubject.individual [
     fhir:Reference.reference [ fhir:value "Patient/any-patient-id" ]
  ].

# - ontology header ------------------------------------------------------------

 a owl:Ontology;
  owl:imports fhir:fhir.ttl.