Closed ruscoder closed 3 years ago
According to the specification and discussions around repeating groups we decided to change storing answers for repeating groups.
Previously used:
item: [ { linkId: 'repeating-group', answer: [ { 'item': {linkId: 'subanswer', answer: [{value: {string: 'value'}}]}, }, { 'item': {linkId: 'subanswer', answer: [{value: {string: 'value'}}]}, }, ] } ]
Proposed:
item: [ { linkId: 'repeating-group', item: [ {linkId: 'subanswer', answer: [{value: {string: 'value'}}]}, ] }, { linkId: 'repeating-group', item: [ {linkId: 'subanswer', answer: [{value: {string: 'value'}}]}, ] } ]
The previously used solution had some disadvantages:
According to the specification and discussions around repeating groups we decided to change storing answers for repeating groups.
Previously used:
Proposed:
The previously used solution had some disadvantages: