WorldHealthOrganization / smart-anc

WHO Antenatal Care Guidelines IG

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

items in Complex repeating datatype should be grouped in item ANCA Questionnaire

PallaviGanorkar opened this issue · comments

https://build.fhir.org/ig/WorldHealthOrganization/smart-anc/Questionnaire-ANCA.html

items representing fields in Complex Data type should be define in one group

eg:

          "item": [
            {
              "linkId": "PR-name",
              "type": "group",
              "definition": "http://hl7.org/fhir/StructureDefinition/Patient#Patient.name",
              "item": [
                {
                  "linkId": "PR-name-text",
                  "definition": "http://hl7.org/fhir/StructureDefinition/Patient#Patient.name.given",
                  "type": "string",
                  "text": "First Name"
                },
                {
                  "linkId": "PR-name-family",
                  "definition": "http://hl7.org/fhir/StructureDefinition/datatypes#Patient.name.family",
                  "type": "string",
                  "text": "Family Name"
                }
              ]
            },
            ...
            ...
            ...
       ]