我可以使用导致 link 问卷调查的行动到护理计划 activity 吗?

Can I use actionResulting to link Questionnaire to a CarePlan activity?

我已经问过 and someone else has asked another ,但这次我的问题更具体一些。

这次我想知道是否允许使用 'detail' 而不是引用创建 CarePlan,然后将 link 调查问卷输入 actionResulting。我可以将 actionResulting 用作调查问卷的 link 吗?以下资源是否有效?

{
  "resourceType": "CarePlan",
  ...,
  "activity": [
    {
      "actionResulting": [
        {
          "reference": "Questionnaire/copd-form"
        }
      ]
      "detail": {
        "category": {
          "coding": [
            {
              "system": "http://hl7.org/fhir/care-plan-activity-category",
              "code": "observation"
            }
          ]
        },
        "code": {
          "text": "A code for capturing COPD subjective input from patient?"
        },
        "prohibited": false,
        "scheduledTiming": {
          "repeat": {
            "frequency": 1,
            "period": 1,
            "periodUnits": "d"
          }
        },
        "performer": [
          {
            "reference": "Patient/3183"
          }
        ],
        "description": "Daily COPD form"
      }
    }
}

嗯,指向调查问卷会说 "as a result of this plan, this Questionnaire was designed"。我怀疑您真正想说的是 "as a result of this plan, I asked the patient to fill out Questionnaire X"(这将是 DiagnosticOrder)或 "as a result of this plan, the patient answered this Questionnaire"(这将是 QuestionnaireResponse)。对于其中的第一个,我相信我们仍在等待扩展以允许 DiagnosticRequest 指向要填写的问卷。