I have a reference data stored in one set variable component and the value is like this :
[{
"subjectId": "0001",
"subjectName": "Subject 1"
},
{
"subjectId": "0002",
"subjectName": "Subject 2"
},
{
"subjectId": "0003",
"subjectName": "Subject 3"
}
]
Is there a more optimal way to store this. Database reference is not an option and might need to update this reference data in the future if new subject is created. Thanks!