Structured Data Capture
4.0.0-ci-build - STU 4 CI-build International flag

Structured Data Capture, published by HL7 International / FHIR Infrastructure. This guide is not an authorized publication; it is the continuous build for version 4.0.0-ci-build built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/HL7/sdc/ and changes regularly. See the Directory of published versions

: Request-based solicitation example - ServiceRequest

Page standards status: Informative

Raw ttl | Download


@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 -------------------------------------------------------------------

<http://hl7.org/fhir/ServiceRequest/example> a fhir:ServiceRequest ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "example"] ;
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "http://hl7.org/fhir/uv/sdc/StructureDefinition/sdc-servicerequest" ;
       fhir:index -1 ;
       fhir:link <http://hl7.org/fhir/uv/sdc/StructureDefinition/sdc-servicerequest>
     ]
  ] ;
  fhir:Resource.language [ fhir:value "en"] ;
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "extensions" ] ;
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: ServiceRequest example</b></p><a name=\"example\"> </a><a name=\"hcexample\"> </a><div style=\"display: inline-block; background-color: #d9e0e7; padding: 6px; margin: 4px; border: 1px solid #8da1b4; border-radius: 5px; line-height: 60%\"><p style=\"margin-bottom: 0px\"/><p style=\"margin-bottom: 0px\">Profile: <a href=\"StructureDefinition-sdc-servicerequest.html\">Questionnaire Service Request</a></p></div><p><b>ServiceRequest Questionnaire</b>: <a href=\"Questionnaire-questionnaire-sdc-profile-example-PHQ9.html\">Patient Health Questionnaire - 9 Item</a></p><p><b>status</b>: Active</p><p><b>intent</b>: Order</p><p><b>code</b>: <span title=\"Codes:{http://hl7.org/fhir/uv/sdc/CodeSystem/temp complete-questionnaire}\">Complete Questionnaire</span></p><p><b>subject</b>: <a href=\"http://example.org/fhir/Patient/proband\">Annie Proband</a></p><p><b>occurrence</b>: Once per 1 month</p><p><b>requester</b>: <a href=\"http://hl7.org/fhir/R4/practitionerrole-example.html\">Dr. Adam Careful, Acme Hospital</a></p><p><b>performer</b>: <a href=\"http://example.org/fhir/Patient/proband\">Annie Proband</a></p><p><b>reasonCode</b>: <span title=\"Codes:\">Monitor effects of new anti-depressant</span></p></div>"
  ] ;
  fhir:DomainResource.extension [
     fhir:index -1 ;
     fhir:Extension.url [ fhir:value "http://hl7.org/fhir/uv/sdc/StructureDefinition/sdc-servicerequest-questionnaire" ] ;
     fhir:Extension.valueCanonical [
       fhir:value "http://hl7.org/fhir/uv/sdc/Questionnaire/questionnaire-sdc-profile-example-PHQ9" ;
       fhir:link <http://hl7.org/fhir/uv/sdc/Questionnaire/questionnaire-sdc-profile-example-PHQ9>
     ]
  ] ;
  fhir:ServiceRequest.status [ fhir:value "active"] ;
  fhir:ServiceRequest.intent [ fhir:value "order"] ;
  fhir:ServiceRequest.code [
     fhir:CodeableConcept.coding [
       fhir:index -1 ;
       fhir:Coding.system [ fhir:value "http://hl7.org/fhir/uv/sdc/CodeSystem/temp" ] ;
       fhir:Coding.code [ fhir:value "complete-questionnaire" ]
     ]
  ] ;
  fhir:ServiceRequest.subject [
     fhir:link <http://example.org/fhir/Patient/proband> ;
     fhir:Reference.reference [ fhir:value "http://example.org/fhir/Patient/proband" ] ;
     fhir:Reference.display [ fhir:value "Annie Proband" ]
  ] ;
  fhir:ServiceRequest.occurrenceTiming [
     fhir:Timing.repeat [
       fhir:Timing.repeat.frequency [ fhir:value "1"^^xsd:positiveInteger ] ;
       fhir:Timing.repeat.period [ fhir:value "1"^^xsd:decimal ] ;
       fhir:Timing.repeat.periodUnit [ fhir:value "mo" ]
     ]
  ] ;
  fhir:ServiceRequest.requester [
     fhir:link <http://hl7.org/fhir/PractitionerRole/example> ;
     fhir:Reference.reference [ fhir:value "http://hl7.org/fhir/PractitionerRole/example" ] ;
     fhir:Reference.display [ fhir:value "Dr. Adam Careful, Acme Hospital" ]
  ] ;
  fhir:ServiceRequest.performer [
     fhir:index -1 ;
     fhir:link <http://example.org/fhir/Patient/proband> ;
     fhir:Reference.reference [ fhir:value "http://example.org/fhir/Patient/proband" ] ;
     fhir:Reference.display [ fhir:value "Annie Proband" ]
  ] ;
  fhir:ServiceRequest.reasonCode [
     fhir:index -1 ;
     fhir:CodeableConcept.text [ fhir:value "Monitor effects of new anti-depressant" ]
  ] .

<http://hl7.org/fhir/PractitionerRole/example> a fhir:PractitionerRole .

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

<http://hl7.org/fhir/ServiceRequest/example.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl ;
  owl:versionIRI <http://build.fhir.org/ServiceRequest/example.ttl> .