-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fhir4: things I'm breaking #955
Comments
I need to spin out mappings and extensions to different issues. It's taking a long time to get fhir working in typescript. I'm close now and want to get that released. data values would be incredibly useful - for example, to provide completions on name usage or gender. All the data is available to do this. Even more useful is shortcuts for complex values -I don't have a good example to hand but eg the simple string Even better would be generic value mappers. So I could do something in job code to auto-map vales. Like we provide a function once to map incoming name objects to FHIR name objects. Now I can pass an upstream name object straight into the builder and let it automap. IG guides can't do this because they only provide one side of the mapping. But I'm sure we should be able to allow jobs to define mapping rules (or helper functions). The other area is extensions, which need a bit more work. I would like builders to use a key like |
One thing that doesn't work so well is the typedproperties like |
I am rebuilding the fhir adaptor generator to specialise in fhir4.
This is making me break regular fhir generation from an IG. For a couple of reasons:
As a result, I'm introducing the following problems which will all need fixing before we can generate from an IG:
b.patient(props)
which uses a default profile, but also you can specify a profileb.patient'inbound-patient', props)
.Also, a quick reminder, we need to do further work once all this i done:
The text was updated successfully, but these errors were encountered: