Hi everyone,
I want to create a json data for the dependent optionsets.
The data is as follows-
3 fields - A, B, C
Field A options- 1, 2, 3
Field B options- 4, 5
Field C options- 6, 7
Now, the optionsets are dependent in the following manner:
If Field A=1, Field B= 4, Field C=6
If Field A=2, Field B=4, Field C=7
As you can see, field A can be 1 or 2, but field B is same for both these values. So, while creating json, I am struggling because the json doesn't allow duplicate.
How shall I proceed?
Thanks