FHIR Extensions Pack
5.1.0-cibuild - Working Copy International flag

FHIR Extensions Pack, published by HL7 International / FHIR Infrastructure. This guide is not an authorized publication; it is the continuous build for version 5.1.0-cibuild built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/HL7/fhir-extensions/ and changes regularly. See the Directory of published versions

StructureMap: FML Conversion for TestReport: R4B to R5

Official URL: http://hl7.org/fhir/StructureMap/TestReport4Bto5 Version: 5.1.0-cibuild
Standards status: Trial-use Maturity Level: 1 Computable Name: TestReport4Bto5

FMLConversionforTestReportR4BtoR5

/// url = 'http://hl7.org/fhir/StructureMap/TestReport4Bto5'
/// name = 'TestReport4Bto5'
/// title = 'FML Conversion for TestReport: R4B to R5'
/// status = 'active'

conceptmap "TestReportActionResult" {
  prefix s = "http://hl7.org/fhir/4.3/report-action-result-codes"
  prefix t = "http://hl7.org/fhir/report-action-result-codes"

  s:pass - t:pass
  s:skip - t:skip
  s:fail - t:fail
  s:warning - t:warning
  s:error - t:error
}

conceptmap "TestReportParticipantType" {
  prefix s = "http://hl7.org/fhir/4.3/report-participant-type"
  prefix t = "http://hl7.org/fhir/report-participant-type"

  s:"test-engine" - t:"test-engine"
  s:client - t:client
  s:server - t:server
}

conceptmap "TestReportResult" {
  prefix s = "http://hl7.org/fhir/4.3/report-result-codes"
  prefix t = "http://hl7.org/fhir/report-result-codes"

  s:pass - t:pass
  s:fail - t:fail
  s:pending - t:pending
}

conceptmap "TestReportStatus" {
  prefix s = "http://hl7.org/fhir/4.3/report-status-codes"
  prefix t = "http://hl7.org/fhir/report-status-codes"

  s:completed - t:completed
  s:"in-progress" - t:"in-progress"
  s:waiting - t:waiting
  s:stopped - t:stopped
  s:"entered-in-error" - t:"entered-in-error"
}

uses "http://hl7.org/fhir/4.3/StructureDefinition/TestReport" alias TestReportR4B as source
uses "http://hl7.org/fhir/StructureDefinition/TestReport" alias TestReportR5 as target

imports "http://hl7.org/fhir/StructureMap/*4Bto5"

group TestReport(source src : TestReportR4B, target tgt : TestReportR5) extends DomainResource <<type+>> {
  src.identifier -> tgt.identifier;
  src.name -> tgt.name;
  src.status as v -> tgt.status = translate(v, '#TestReportStatus', 'code');
  src.testScript -> tgt.testScript;
  src.result as v -> tgt.result = translate(v, '#TestReportResult', 'code');
  src.score -> tgt.score;
  src.tester -> tgt.tester;
  src.issued -> tgt.issued;
  src.participant as s -> tgt.participant as t then TestReportParticipant(s, t);
  src.setup as s -> tgt.setup as t then TestReportSetup(s, t);
  src.test as s -> tgt.test as t then TestReportTest(s, t);
  src.teardown as s -> tgt.teardown as t then TestReportTeardown(s, t);
}

group TestReportParticipant(source src, target tgt) extends BackboneElement {
  src.type as v -> tgt.type = translate(v, '#TestReportParticipantType', 'code');
  src.uri -> tgt.uri;
  src.display -> tgt.display;
}

group TestReportSetup(source src, target tgt) extends BackboneElement {
  src.action as s -> tgt.action as t then TestReportSetupAction(s, t);
}

group TestReportSetupAction(source src, target tgt) extends BackboneElement {
  src.operation as s -> tgt.operation as t then TestReportSetupActionOperation(s, t);
  src.assert as s -> tgt.assert as t then TestReportSetupActionAssert(s, t);
}

group TestReportSetupActionOperation(source src, target tgt) extends BackboneElement {
  src.result as v -> tgt.result = translate(v, '#TestReportActionResult', 'code');
  src.message -> tgt.message;
  src.detail -> tgt.detail;
}

group TestReportSetupActionAssert(source src, target tgt) extends BackboneElement {
  src.result as v -> tgt.result = translate(v, '#TestReportActionResult', 'code');
  src.message -> tgt.message;
  src.detail -> tgt.detail;
}

// group TestReportSetupActionAssertRequirement(source src, target tgt) extends BackboneElement {
// src.link : uri -> tgt.link;
// src.link : canonical -> tgt.link;
// }
group TestReportTest(source src, target tgt) extends BackboneElement {
  src.name -> tgt.name;
  src.description -> tgt.description;
  src.action as s -> tgt.action as t then TestReportTestAction(s, t);
}

group TestReportTestAction(source src, target tgt) extends BackboneElement {
  src.operation as s -> tgt.operation as t then TestReportSetupActionOperation(s, t);
  src.assert as s -> tgt.assert as t then TestReportSetupActionAssert(s, t);
}

group TestReportTeardown(source src, target tgt) extends BackboneElement {
  src.action as s -> tgt.action as t then TestReportTeardownAction(s, t);
}

group TestReportTeardownAction(source src, target tgt) extends BackboneElement {
  src.operation as s -> tgt.operation as t then TestReportSetupActionOperation(s, t);
}