FHIR Chat · Find custom extension fields in jpa server database · implementers

Stream: implementers

Topic: Find custom extension fields in jpa server database


view this post on Zulip Arch18 (Oct 14 2021 at 04:24):

Hi, I've just join a project which adopted hapi-jpa-server but noone has much exp w/ the database.
I'm trying to query value of custom extension fields in jpa server database. the field look like this

@ResourceDef( name = "Appointment")
public class MyAppointment extends Appointment {
...
    @Child(
        name = "backgroundDisease"
    )
    @Description(
        shortDefinition = "Background disease of this patient"
    )
    @Extension(
        url = "http://acme.prg/Appointment#BackgroundDisease",
        definedLocally = false,
        isModifier = false
    )
...
}

Please advice

view this post on Zulip Vadzim Kavalkou (Oct 14 2021 at 09:25):

Same question, is it possible to define extensions via *.yaml configuration in hapi-jpa-server?
It would be nice to have an example (any, not even with application.yaml)

view this post on Zulip Lloyd McKenzie (Oct 14 2021 at 12:17):

Probably best to ask on #hapi


Last updated: Apr 12 2022 at 19:14 UTC