When the dataprocessor supplies an a list of options it must be used in the view to translate the raw values
If you create a view contacts the data processor will show the following definition for the field gender
"gender": {
"name": "gender",
"title": "Gender",
"description": "",
"type": 1,
"data_type": "Int",
"api.required": "0",
"api.aliases": [],
"api.filter": true,
"api.return": true,
"options": {
"1": "Female",
"2": "Male",
"3": "Other"
}
},
The options array must be used to show the labels (Female,Male etc..) instead of the values (1,2 etc ..)