This page is part of the Radiation Dose Summary for Diagnostic Procedures on FHIR (v0.1.0: STU 1 Ballot 1) based on FHIR R4. . For a full list of available versions, see the Directory of published versions
Generated Narrative
Resource "RDS-sharing-verification"
url: https://build.fhir.org/ig/HL7/fhir-radiation-dose-summary-ig/TestScript-RDS-sharing-verification.json
version: 0.1.0
name: TestScript_RDS_Sharing_Verification
status: active
date: 2021-07-17
publisher: HL7 Imaging Integration Working Group
contact: http://www.hl7.org/Special/committees/imagemgt, HL7 Imaging Integration Workgroup: http://www.hl7.org/Special/committees/imagemgt, Abderrazek Boufahja: abderrazek.boufahja@ge.com
description: TestScript to validate the sharing data between RDSP actor and a FHIR Server.
jurisdiction: World (m49.htm#001)
copyright: HL7 2021
- | Index | Profile |
* | 1 | FHIR Server (Details: http://terminology.hl7.org/CodeSystem/testscript-profile-destination-types code FHIR-Server = 'FHIR Server', stated as 'FHIR Server') |
variable
name: patientIdentifier
defaultValue: PAT3421
description: Enter the patient identifier as used in the RDSR: tag(0010,0020) Patient ID
variable
name: deviceIdentifier
defaultValue: 767ER
description: Enter the Device identifier as used in the RDSR: tag(0018,1000) Device Serial Number
variable
name: practitionerFamily
defaultValue: Moore
description: Enter the Practitioner family name as used in the RDSR: TID 1020(Person Participant).EV (113871, DCM, Person ID)
variable
name: practitionerGiven
defaultValue: John
description: Enter the Practitioner given name as used in the RDSR: TID 1020(Person Participant).EV (113871, DCM, Person ID)
variable
name: studyInstanceUID
defaultValue: 1.2.840.121.3.32.0.1.25
description: Enter the Study Instance UID identifying the image study: tag(0020,000D) Study Instance UID
variable
name: patientResourceId
path: Bundle/entry/resource/Patient/id
sourceId: patient-search-response
variable
name: deviceResourceId
path: Bundle/entry/resource/Device/id
sourceId: device-search-response
variable
name: practitionerResourceId
path: Bundle/entry/resource/Practitioner/id
sourceId: practitioner-search-response
variable
name: imagingStudyResourceId
path: Bundle/entry/resource/ImagingStudy/id
sourceId: imagingstudy-search-response
test
name: RDS_Sharing_Verification
description: This is a test to validate the sharing of data between RDSP actor and a FHIR Server. The RDSP actor gathers an RDSR from an irradiating modality (a CT RDSR, an X-Ray RDSR or an RRDSR). Once Data collected, the RDSP will collect the right IDs for the patient, practitioner, ImagingStudy and Device from the FHIR Server, then it will generate the radiation summary resources and share them with the FHIR Server. You can refer to the complete description under : http://hl7.org/fhir/uv/radiation-dose-summary/testing.html#scenario-1-rdsr-summary-to-fhir. This test is executed after this workflow is performed, and the scripts will check the data are well received by the FHIR Server.
action
Operations
- Type Resource Description Accept EncodeRequestUrl Params ResponseId * Search (Details: http://terminology.hl7.org/CodeSystem/testscript-operation-codes code search = 'Search', stated as 'null') Patient Search for matching Patient related to the identifier ${patientIdentifier} json true ?identifier=${patientIdentifier} patient-search-response action
Asserts
- Description Expression WarningOnly * Confirm that the total number of response is greater than 1. Bundle.total.toInteger() >= 1 false
test
name: search_device
description: Search by device identifier
action
Operations
- Type Resource Description Accept EncodeRequestUrl Params ResponseId * Search (Details: http://terminology.hl7.org/CodeSystem/testscript-operation-codes code search = 'Search', stated as 'null') Device Search for matching Device related to the identifier ${deviceIdentifier} json true ?identifier=${deviceIdentifier} device-search-response action
Asserts
- Description Expression WarningOnly * Confirm that the total number of response is greater than 1. Bundle.total.toInteger() >= 1 false
test
name: search_practitioner
description: Search by practitioner name
action
Operations
- Type Resource Description Accept EncodeRequestUrl Params ResponseId * Search (Details: http://terminology.hl7.org/CodeSystem/testscript-operation-codes code search = 'Search', stated as 'null') Practitioner Search for matching Practitioner related to the family name ${practitionerFamily} and the given name ${practitionerGiven} json true ?family=${practitionerFamily}&given=${practitionerGiven} practitioner-search-response action
Asserts
- Description Expression WarningOnly * Confirm that the total number of response is greater than 1. Bundle.total.toInteger() >= 1 false
test
name: search_ImagingStudy
description: Search by ImagingStudy identifier
action
Operations
- Type Resource Description Accept EncodeRequestUrl Params ResponseId * Search (Details: http://terminology.hl7.org/CodeSystem/testscript-operation-codes code search = 'Search', stated as 'null') ImagingStudy Search for matching ImagingStudy related to the studyInstanceUID ${studyInstanceUID} json true ?identifier=urn:oid:${studyInstanceUID} imagingstudy-search-response action
Asserts
- Description Expression WarningOnly * Confirm that the total number of response is greater than 1. Bundle.total.toInteger() >= 1 false
test
name: search_rds
description: Search Radiation Dose Summary resource by patient, device and part-of parameters
action
Operations
- Type Resource Description Accept EncodeRequestUrl Params ResponseId * Search (Details: http://terminology.hl7.org/CodeSystem/testscript-operation-codes code search = 'Search', stated as 'null') Observation Search for matching Radiation Dose Summary related to the described parameters json true ?code=73569-6&device=${deviceResourceId}&patient=${patientResourceId}&part-of=${imagingStudyResourceId} rds-search-response action
Asserts
- Description Expression WarningOnly * Confirm that the total number of response is greater than 1. Bundle.total.toInteger() >= 1 false