Release 4B

This page is part of the FHIR Specification (v4.3.0: R4B - STU). The current version which supercedes this version is 5.0.0. For a full list of available versions, see the Directory of published versions . Page versions: R5 R4B R4 R3

Questionnaire-example-gcs.ttl

FHIR Infrastructure Work GroupMaturity Level: N/AStandards Status: InformativeCompartments: Not linked to any defined compartments

Raw Turtle (+ also see Turtle/RDF Format Specification)

Glasgow Coma Score example form

@prefix fhir: <http://hl7.org/fhir/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .

# - resource -------------------------------------------------------------------

[] a fhir:Questionnaire;
  fhir:Resource.id [ fhir:value "gcs"], [ fhir:value "motor"], [ fhir:value "verbal"], [ fhir:value "eye"];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ]
  ];
  fhir:Questionnaire.url [ fhir:value "http://hl7.org/fhir/Questionnaire/gcs"];
  fhir:Questionnaire.title [ fhir:value "Glasgow Coma Score"];
  fhir:Questionnaire.status [ fhir:value "draft"];
  fhir:Questionnaire.experimental [ fhir:value "true"];
  fhir:Questionnaire.subjectType [
     fhir:value "Patient";
     fhir:index 0
  ];
  fhir:Questionnaire.date [ fhir:value "2015-08-03"];
  fhir:Questionnaire.publisher [ fhir:value "FHIR Project team"];
  fhir:Questionnaire.code [
     fhir:index 0;
     fhir:Coding.system [ fhir:value "http://loinc.org" ];
     fhir:Coding.code [ fhir:value "9269-2" ]
  ];
  fhir:Questionnaire.item [
     fhir:index 0;
     fhir:Questionnaire.linkId [ fhir:value "1.1" ];
     fhir:Questionnaire.code [
       fhir:index 0;
       fhir:Coding.system [ fhir:value "http://loinc.org" ];
       fhir:Coding.code [ fhir:value "9270-0" ]
     ];
     fhir:Questionnaire.type [ fhir:value "choice" ];
     fhir:Questionnaire.answerValueSet [ fhir:value "#verbal" ]
  ], [
     fhir:index 1;
     fhir:Questionnaire.linkId [ fhir:value "1.2" ];
     fhir:Questionnaire.code [
       fhir:index 0;
       fhir:Coding.system [ fhir:value "http://loinc.org" ];
       fhir:Coding.code [ fhir:value "9268-4" ]
     ];
     fhir:Questionnaire.type [ fhir:value "choice" ];
     fhir:Questionnaire.answerValueSet [ fhir:value "#motor" ]
  ], [
     fhir:index 2;
     fhir:Questionnaire.linkId [ fhir:value "1.3" ];
     fhir:Questionnaire.code [
       fhir:index 0;
       fhir:Coding.system [ fhir:value "http://loinc.org" ];
       fhir:Coding.code [ fhir:value "9267-6" ]
     ];
     fhir:Questionnaire.type [ fhir:value "choice" ];
     fhir:Questionnaire.answerValueSet [ fhir:value "#eye" ]
  ] .

# -------------------------------------------------------------------------------------


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.