Coverage Resource missing #231
-
Hi everyone, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
The conversion templates in this repo are based on the 2-to-FHIR spreadsheet. The spreadsheet at present does not provide a mapping between IN1 and Coverage resource. So, you will need to make changes in the templates. Familiarity with Liquid templating language will be required. You can either write all your template code in the root template, or in separate template files that you can call from the root template. The default templates are structured in multiple files for the purpose of reuse. If you are using the VS Code extension for editing the templates, hovering over the sub-template name while pressing CTRL will enable hyperlinks that will take you to the sub-templates. Here are some tips on how you could add Coverage resource following the same structure as the default templates:
|
Beta Was this translation helpful? Give feedback.
The conversion templates in this repo are based on the 2-to-FHIR spreadsheet. The spreadsheet at present does not provide a mapping between IN1 and Coverage resource.
So, you will need to make changes in the templates. Familiarity with Liquid templating language will be required. You can either write all your template code in the root template, or in separate template files that you can call from the root template. The default templates are structured in multiple files for the purpose of reuse. If you are using the VS Code extension for editing the templates, hovering over the sub-template name while pressing CTRL will enable hyperlinks that will take you to the sub-templates.
Here are so…