Skip to content

Commit

Permalink
Update supportedformats.rst
Browse files Browse the repository at this point in the history
  • Loading branch information
alexzautke committed Dec 26, 2020
1 parent d45522a commit 216a570
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions mappingengine/featureslist/supportedformats.rst
Original file line number Diff line number Diff line change
Expand Up @@ -56,14 +56,14 @@ All other column identifiers are exposed as child elements of the .record Backbo
2. CSV file contains no header metadata:

Regardless if the CSV file contains a header, all elements are accessible for the mapping to FHIR. For files not containing a metadata row, element names for the mapping source are generated dynamically as ``field#``: ::
Regardless if the CSV file contains a header, all elements are accessible for the mapping to FHIR. For files not containing a metadata row, element names for the mapping source are generated dynamically as ``field#`` (starting with field0): ::

src.record as record then
{
record.field1 as id -> tgt.identifier = id('<system>', id);
record.field2 as given -> tgt.name as name, name.given = given;
record.field3 as family -> tgt.name as name collate, name.family = family;
record.field4 as gender -> tgt.gender = translate('<ConceptMap>', gender, 'code');
record.field0 as id -> tgt.identifier = id('<system>', id);
record.field1 as given -> tgt.name as name, name.given = given;
record.field2 as family -> tgt.name as name collate, name.family = family;
record.field3 as gender -> tgt.gender = translate('<ConceptMap>', gender, 'code');
};

(C)-CDA
Expand Down

0 comments on commit 216a570

Please sign in to comment.