@@ -13,10 +13,10 @@ These transforms utilize FHIR Path in a similar manner to the FHIR to HL7 mappin
1313
1414## Schema Design
1515
16- Here's an example of a sender transform:
16+ Here's an example of a transform:
1717
1818```
19- extends: sender- transform-base
19+ extends: transform-base
2020constants:
2121 patientPath: "Bundle.entry.resource.ofType(Patient)"
2222elements:
@@ -60,7 +60,7 @@ Element properties (in order of execution):
6060 another element may have populated, so it could be used to check the result of a
6161 previous element (elements must be kept in the correct order for this to work).
6262- ` bundleProperty ` - a FHIR Path expression that denotes where to store the value. If the property does not yet exist,
63- ReportStream will attempt to create it, though there are restrictions around which types of resources/properties can
63+ PRIME FHIR Converter will attempt to create it, though there are restrictions around which types of resources/properties can
6464 be dynamically created.
6565- ` value ` - a list of FHIR Path expressions that evaluates to the proper FHIR Type to be
6666 assigned to the property specified in the ` bundleProperty ` element property. The first expression to
@@ -73,7 +73,7 @@ Element properties (in order of execution):
7373 This property is extensible; provide an implementation of ` ValueSetCollection ` to define a custom data provider.
7474 The following default implementation is provided:
7575 - ` values ` - Key value pairs are listed directly in a configuration schema.
76- - ` schema ` - the name of a child schema to process. This points to another sender transform schema which will be used
76+ - ` schema ` - the name of a child schema to process. This points to another transform schema which will be used
7777 with this schema's resource as the focus resource. Cannot be used with ` bundleProperty ` , ` value ` , or ` valueSet ` .
7878- ` resourceIndex ` - the name of a constant with the index of a resource collection. Useful to
7979 iterate over multiple resources. Can only be used with ` schema ` .
0 commit comments