I need to include array type in file geodatabase/shapefile field's content so that when i expose it as a map service, i can get array instead of string or integer.
e.g., i got fields: OBJECTID, field1, field2, shape 0,["a","b"],"simple field",polyline
and when i get after publishing service as a json, it should be like:
OBJECTID: 0, field1: ["a","b"], field2: "simle field", shape:...
remember, field1: ["a","b"] should not be like field1: "[\"a\",\"b\"]"