Hi,
I am working with a Parent Object as the return object in a very straight forward GET Restful Service.
This Parent object contains an attribute of type String array with the name DataClasses.
This is what the JSON response should look like:
I have created the attribute DataClasses in the Parent Object and it points to the Child Object with a single String parameter of type Text.
See links below:

I usually use it this way when I have an array of Objects stored in the DataClasses attribute where the object has its own attributes and the REST knows where to write the values to based on the same attribute name, but in the case there is no name and only the the string values:
"Email addresses",
"Geographic locations",
"IP addresses",
The problem is it does not return any value to the DataClasses object and I sit with an empty table in my DB. The Service works fine for the Parent Object but not for the child object with the String array.
Please help
Thanks
Francois