Mapping
Platform Metadata
Name | Description | Metadata Key |
---|---|---|
Countries | Names and Two-character Codes for Countries | country |
Languages | Names and Two-character Codes for Languages | language |
Survey Categories | All surveys are associated with a category that describes them. | category |
Survey Statuses | List of Survey Transaction Statuses that are assigned based on the experience of the respondent. | surveystatus |
Job Types | All Surveys have a Job (think Parent of a Survey) and Jobs have Types which describe the style of research. | jobtype |
Group Types | All Surveys have a Type which describes its targeted audience. grouptype | |
Device Types | All Surveys have a list of devices they are allowed to be particpated on. | devicetype |
DMA Mappings | The InnovateMR platform uses DMA Names in addition to DMA Codes. This is a list of the mappings between DMA Codes and DMA Names. | dmamapping |
Questions & Answers
Question Model
{
"QuestionId": 3537,
"QuestionText": "What online streaming video services do you regularly use?",
"QuestionKey": "CORE_ENTERTAINMENT_0015",
"QuestionType": "Multipunch",
"language": "ENGLISH",
"Category": [
"Technology",
"Entertainment"
]
}
Property | Description |
---|---|
QuestionId | Numerical ID of the Question. |
QuestionText | The prompt that is presented to respondents. |
QuestionKey | The Primary Identifier of the Question which is used throughout the InnovateMR platform |
QuestionType | The answer type of the Question. |
language | The associated language of the Question |
Category | The associated Question Categories of the Question |
Question Library By Country-Language
Question Categories
Questions by Category
Answer Model
{
...
"QuestionOptions": [
{
"id": 1,
"OptionText": "ACSC (AAA)",
"Order": 1
},
{
"id": 2,
"OptionText": "Allstate",
"Order": 2
},
{
"id": 3,
"OptionText": "American Family",
"Order": 3
}
]
...
}
Property | Description |
---|---|
id | Numerical ID of the Answer. This is local to the Question. |
OptionText | The answer value that the respondent can choose. |
Order | Order that the answer option will be presented to the respondent (Ascending order). |
Get All Answers for a Question
{
"apiStatus": "success",
"msg": "Answers are successfully searched",
"result": {
"QuestionId": 4,
"QuestionText": "Which of the following best describes your race?",
"QuestionType": "Single Punch",
"QuestionKey": "ETHNICITY",
"QuestionOptions": [
{
"id": 1,
"OptionText": "White",
"Order": 1
},
{
"id": 2,
"OptionText": "Black or African American",
"Order": 2
},
{
"id": 3,
"OptionText": "American Indian or Alaska Native",
"Order": 3
},
{
"id": 4,
"OptionText": "Asian - Asian Indian",
"Order": 4
}
...
}
}
{
"apiStatus": "success",
"msg": "Answers are successfully searched",
"result": {
"QuestionId": 1,
"QuestionText": "What is your age?",
"QuestionType": "Numeric Open Ended",
"QuestionKey": "AGE",
"QuestionOptions": []
}
}