FHIR Clincal Guidelines (v0.1.0) (STU1 Ballot)

This page is part of the Clinical Guidelines (v0.1.0: STU 1 Ballot 1) based on FHIR R4. The current version which supercedes this version is 1.0.0. For a full list of available versions, see the Directory of published versions

CPG_Common_Questionnaire_Patient_Profile

@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:Questionnaire;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "cpg-common-patient-profile"];
  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>: cpg-common-patient-profile</p><p><b>url</b>: <a href=\"http://hl7.org/fhir/uv/cpg/Questionnaire/cpg-common-patient-profile\">http://hl7.org/fhir/uv/cpg/Questionnaire/cpg-common-patient-profile</a></p><p><b>version</b>: 0.1.0</p><p><b>name</b>: CPG_Common_Questionnaire_Patient_Profile</p><p><b>title</b>: CPG Common Questionnaire - Patient information</p><p><b>status</b>: draft</p><p><b>subjectType</b>: Patient</p><p><b>date</b>: Aug 5, 2019 12:02:55 PM</p><p><b>jurisdiction</b>: World <span style=\"background: LightGoldenRodYellow\">(Details : {http://unstats.un.org/unsd/methods/m49/m49.htm code '001' = 'World', given as 'World'})</span></p><blockquote><p><b>item</b></p><p><b>linkId</b>: name</p><p><b>text</b>: Name</p><p><b>type</b>: string</p><p><b>required</b>: true</p></blockquote><blockquote><p><b>item</b></p><p><b>linkId</b>: birthdate</p><p><b>text</b>: Birthdate</p><p><b>type</b>: date</p><p><b>required</b>: true</p></blockquote></div>"
  ];
  fhir:Questionnaire.url [ fhir:value "http://hl7.org/fhir/uv/cpg/Questionnaire/cpg-common-patient-profile"];
  fhir:Questionnaire.version [ fhir:value "0.1.0"];
  fhir:Questionnaire.name [ fhir:value "CPG_Common_Questionnaire_Patient_Profile"];
  fhir:Questionnaire.title [ fhir:value "CPG Common Questionnaire - Patient information"];
  fhir:Questionnaire.status [ fhir:value "draft"];
  fhir:Questionnaire.subjectType [
     fhir:value "Patient";
     fhir:index 0
  ];
  fhir:Questionnaire.date [ fhir:value "2019-08-05T12:02:55-04:00"^^xsd:dateTime];
  fhir:Questionnaire.jurisdiction [
     fhir:index 0;
     fhir:CodeableConcept.coding [
       fhir:index 0;
       fhir:Coding.system [ fhir:value "http://unstats.un.org/unsd/methods/m49/m49.htm" ];
       fhir:Coding.code [ fhir:value "001" ];
       fhir:Coding.display [ fhir:value "World" ]     ]
  ];
  fhir:Questionnaire.item [
     fhir:index 0;
     fhir:Questionnaire.item.linkId [ fhir:value "name" ];
     fhir:Questionnaire.item.text [ fhir:value "Name" ];
     fhir:Questionnaire.item.type [ fhir:value "string" ];
     fhir:Questionnaire.item.required [ fhir:value "true"^^xsd:boolean ]
  ], [
     fhir:index 1;
     fhir:Questionnaire.item.linkId [ fhir:value "birthdate" ];
     fhir:Questionnaire.item.text [ fhir:value "Birthdate" ];
     fhir:Questionnaire.item.type [ fhir:value "date" ];
     fhir:Questionnaire.item.required [ fhir:value "true"^^xsd:boolean ]
  ].

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

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