Skip to main content

MultiStringEnum

MultiStringEnum attribute allows you to select multiple enum options. The options are stored as an array internally.

Sample

Internal data Representation of a sample multiStringEnum attribute

{
"cities": [
{
"id": "7966d0e7-0291-4c67-b149-6e31302cd741",
"value": "Bangalore"
},
{
"id": "993dce6f-2bbd-42fb-b804-e2525985583a",
"value": "Hyderabad"
},
{
"id": "43e0af16-60f5-4f78-9ac6-2646b7dfc8ba",
"value": "Pune"
}
]
}

You can also pass a list of option values for this attribute like follows:

{
"cities": [
"Bangalore",
"Hyderabad",
"Pune"
]
}