How do I add multiple values to a list in a resource using Flexporter? #1421
Unanswered
Piyush1321
asked this question in
Q&A
Replies: 1 comment 1 reply
-
I'm trying this out and unfortunately the options that I would consider intuitive don't seem to work, so the last resort is a bit of a hack.
Let me know if that doesn't work for you. In the meantime I'll see what I can do to make other more obvious approaches work. (The two options I would have preferred are 1) use two fields entries, |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm trying to figure out how to add multiple values to a list in my code for generating an Encounter resource.
- applicability: Encounter fields: - location: Encounter.serviceType.coding value: code: {"59400", "3424"} system: http://www.ama-assn.org/go/cpt
I want both codes to be included in the serviceType field like this:
{ "resourceType": "Encounter", "serviceType": { "coding": [ { "code": "59400", "system": "http://www.ama-assn.org/go/cpt" }, { "code": "3424", "system": "http://www.ama-assn.org/go/cpt" } ] } }
How can I achieve this result using Flexporter?
Beta Was this translation helpful? Give feedback.
All reactions