Example Answer Response Groups and Choices CSVs

1 min read

To help clarify the usage of answer choice and answer response group CSVs, here are a few examples. Imagine you have some questions where Yes is the desired answer and some where No is the desired answer, with no partial credit. You also have questions with responses ranging from Not Implemented to Fully Implemented, with a few options in between.

Example Answer Choices CSV

text,code,description,multiplier
Yes, yes-1, Yes best answer, 1
No, no-0, No worst answer, 0
Yes, yes-0, Yes worst answer, 0
No, no-1, No best answer, 1
Not Implemented, not-impl, 0
Partially Implemented, part-impl, .5
Fully Implemented, full, 1
Other, Other, other, 0
Federal Funding, federal funding, fed-fund, 0
State Funding, state funding, state-fund, 0
Venture Capital, venture capital funding, venture-fund, 0
Department Head, department head, dept-head, 1
Team Lead, team lead team-lead, .5
Nobody, nobody, nobody-0, 0

You can combine these answer choices in different ways to create several answer response groups.

Example Answer Response Groups CSV

name,description,answer_choices,record_type,field_type,select_type,scoring
Yes1-no0, Yes is preferred choice, yes-1|no-0, 0, l
No1-yes0, No is preferred choice, yes-0|no-1, 0, l
ImplementationScheme, Fully implemented is preferred, full|part-impl|not-impl, 0, l
Funding Sources Multi-Select, allows them to choose any funding sources, fed-fund|state-fund|venture-fund|other, 0, a, m, INF
Responsible Party Multi-Select, choose responsible parties or nobody, dept-head|team-lead|other|nobody-0, 0, a, m, MAX
Did this answer your question?