This page is part of the Da Vinci Health Record Exchange (v0.2.0: STU1 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
@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:ValueSet; fhir:nodeRole fhir:treeRoot; fhir:Resource.id [ fhir:value "hrex-task-status"]; fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "generated" ]; fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><ul><li>Include these codes as defined in <a href=\"http://hl7.org/fhir/R4/codesystem-task-status.html\"><code>http://hl7.org/fhir/task-status</code></a><table class=\"none\"><tr><td style=\"white-space:nowrap\"><b>Code</b></td><td><b>Display</b></td></tr><tr><td><a href=\"http://hl7.org/fhir/R4/codesystem-task-status.html#task-status-requested\">requested</a></td><td>Requested</td><td>The task is ready to be acted upon and action is sought.</td></tr><tr><td><a href=\"http://hl7.org/fhir/R4/codesystem-task-status.html#task-status-accepted\">accepted</a></td><td>Accepted</td><td>The potential performer has agreed to execute the task but has not yet started work.</td></tr><tr><td><a href=\"http://hl7.org/fhir/R4/codesystem-task-status.html#task-status-rejected\">rejected</a></td><td>Rejected</td><td>The potential performer who claimed ownership of the task has decided not to execute it prior to performing any action.</td></tr><tr><td><a href=\"http://hl7.org/fhir/R4/codesystem-task-status.html#task-status-in-progress\">in-progress</a></td><td>In Progress</td><td>The task has been started but is not yet complete.</td></tr><tr><td><a href=\"http://hl7.org/fhir/R4/codesystem-task-status.html#task-status-failed\">failed</a></td><td>Failed</td><td>The task was attempted but could not be completed due to some error.</td></tr><tr><td><a href=\"http://hl7.org/fhir/R4/codesystem-task-status.html#task-status-completed\">completed</a></td><td>Completed</td><td>The task has been completed.</td></tr></table></li></ul></div>" ]; fhir:ValueSet.url [ fhir:value "http://hl7.org/fhir/us/davinci-hrex/ValueSet/hrex-task-status"]; fhir:ValueSet.version [ fhir:value "0.2.0"]; fhir:ValueSet.name [ fhir:value "HRexTaskStatus"]; fhir:ValueSet.title [ fhir:value "HRex Task Status ValueSet"]; fhir:ValueSet.status [ fhir:value "draft"]; fhir:ValueSet.date [ fhir:value "2020-08-09T15:38:40+00:00"^^xsd:dateTime]; fhir:ValueSet.publisher [ fhir:value "HL7 International - Clinical Interoperability Council"]; fhir:ValueSet.contact [ fhir:index 0; fhir:ContactDetail.telecom [ fhir:index 0; fhir:ContactPoint.system [ fhir:value "url" ]; fhir:ContactPoint.value [ fhir:value "http://www.hl7.org/Special/committees/cic" ] ] ]; fhir:ValueSet.description [ fhir:value "The set of task codes allowed for use in HRex data request tasks"]; fhir:ValueSet.jurisdiction [ fhir:index 0; fhir:CodeableConcept.coding [ fhir:index 0; fhir:Coding.system [ fhir:value "urn:iso:std:iso:3166" ]; fhir:Coding.code [ fhir:value "US" ] ] ]; fhir:ValueSet.compose [ fhir:ValueSet.compose.include [ fhir:index 0; fhir:ValueSet.compose.include.system [ fhir:value "http://hl7.org/fhir/task-status" ]; fhir:ValueSet.compose.include.concept [ fhir:index 0; fhir:ValueSet.compose.include.concept.code [ fhir:value "requested" ] ], [ fhir:index 1; fhir:ValueSet.compose.include.concept.code [ fhir:value "accepted" ] ], [ fhir:index 2; fhir:ValueSet.compose.include.concept.code [ fhir:value "rejected" ] ], [ fhir:index 3; fhir:ValueSet.compose.include.concept.code [ fhir:value "in-progress" ] ], [ fhir:index 4; fhir:ValueSet.compose.include.concept.code [ fhir:value "failed" ] ], [ fhir:index 5; fhir:ValueSet.compose.include.concept.code [ fhir:value "completed" ] ] ] ]. # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl.