Stream: CARIN IG for Blue Button®
Topic: Contained References
Ravindra Kondiparthi (Sep 03 2019 at 01:17):
@Grahame Grieve @Amol Vyas
Looking for your suggestions on nested contained references.
Is it possible to use local reference inside an resource which is in the contained element?
For example:
from the below example can I use local reference for practitioner?
{
resourceType:”ExplanationOfBenefit”,
contained:[
{
resourceType:”PractitionerRole”,
practitioner:”#prac1234”
}
]
}
Grahame Grieve (Sep 03 2019 at 02:08):
yes you can. but note that the contained resource is contained in the container resource - the actual contained resources can't nest
Ravindra Kondiparthi (Sep 03 2019 at 03:06):
thanks @Grahame Grieve . does updated example looks valid ?
{
resourceType:”ExplanationOfBenefit”,
contained:[
{
resourceType:”Practitioner”,
id:”prac1234”
},
{
resourceType:”PractitionerRole”,
practitioner:”#prac1234”
}
]
}
Grahame Grieve (Sep 03 2019 at 03:14):
y
Last updated: Apr 12 2022 at 19:14 UTC