I want to create an Observation derived from a QuestionnaireResponse. What is the convention for pointing to a specific item in a QuestionnaireResponse object from which the Observation was derived? I was thinking you could point at the QuestionnaireResponse object and then refer to a linkId (or even the linkId of a nested item).
E.g.
QuestionnaireResponse = {
"id": "QR1",
"item": [
{
"linkId": "I1",
..
}
],
..
}
The Observation derivedFrom the questionnaire response in "I1" would be
{
"derivedFrom": [
"type": ?,
"reference": ?
],
..
}