Last active
August 29, 2015 14:05
-
-
Save gabrielgilini/bf18949db2768542c1e3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"program": { | |
"id": 42, // When editing this will be set | |
"settings": { | |
"name": "Program Example #1", | |
"authors": "John Doe, Jane Doe", | |
"description": "This is an example of the JSON generated by the Program Creation Tool canvas", | |
"parameters_of_interest": ["some param of interest", "other param of interest"], | |
"status": "draft" | |
}, | |
"start_question": 1, | |
"questions_attributes": [ | |
{ | |
"id": 1, | |
"type": "OpenEnded", | |
"content": {"English": "foo bar en", "Spanish": "foo bar es"}, | |
"scheduling_attributes": { | |
"type": "scheduled", // Possible values: ["immediate", "scheduled"] | |
"params": { // Only present if type == "scheduled" | |
"week": 5, | |
"wday": 0, // 0 is Monday, 6 is Sunday | |
"time": "10:30 AM" | |
} | |
}, | |
"parameter_of_interest_id": 5, | |
"connections_attributes": [ | |
{ | |
"type": "OpenEnded", | |
"content": {"English": "answer content_text"}, // Optional | |
"targets_attributes": [{"question_id": 3}, {"question_id": 2}] // Ordered by priority | |
}, | |
{ | |
"type": "NoResponse", | |
"content": {"English": "no response content_text"}, // Optional | |
"targets_attributes": [{"question_id": 4}, {"question_id": 6, "persisted_id": 82, "_destroy": true}] // The connection to the question with id == 6 was removed | |
// since this connection already persisted to the db we have persisted_id | |
} | |
], | |
"position_attributes": {"x": 300, "y": 200} | |
}, | |
{ | |
"id": 2, | |
"type": "MultipleChoice", | |
"content": {"English": "multiple foo"}, | |
"scheduling_attributes": { | |
"type": "immediate" | |
}, | |
"branching_attributes": { | |
"ethnicities": ["Unknown or Declined"], | |
"genders": ["male", "undetermined"], | |
"minimum_age": 5, | |
"maximum_age": 42 | |
}, | |
"connections_attributes": [ | |
{ | |
"type": "A", | |
"targets_attributes": [{"question_id": 3}, {"question_id": 4, "persisted_id": 37, "_destroy": true}], // This connection was deleted before being persisted to the db | |
// so we send _destroy == true but no persisted_id | |
"correct": true | |
}, | |
{ | |
"type": "B", | |
"content": {"English": "answer content_text"}, | |
"targets_attributes": [{"question_id": 4}], | |
"correct": false | |
}, | |
{ | |
"type": "C", | |
"content": {"English": "answer content_text"}, | |
"targets_attributes": [], // The answer is not connected to another question | |
"correct": false | |
}, | |
{ | |
"type": "NoResponse", | |
"targets_attributes": [{"question_id": 4}] | |
} | |
], | |
"position_attributes": {"x": 350, "y": 250} | |
}, | |
{ | |
"id": 3, | |
"type": "TrueFalse", | |
"content": {"English": "wu tang is for the children"}, | |
"scheduling_attributes": { | |
"type": "immediate" | |
}, | |
"branching_attributes": { | |
"locations": ["05005", "00110"], | |
"races": ["Hispanic", "Other"], | |
"conditions_attributes": [{"code": "001"}, {"code": "003"}, {"code": "010", "id": 1, "_destroy": true}] // Condition ids, the one with id == 1 was removed | |
}, | |
"connections_attributes": [ | |
{ | |
"type": "True", | |
"content": {"English": "answer content_text"}, | |
"targets_attributes": [{"question_id": 4}], | |
"correct": false | |
}, | |
{ | |
"type": "False", | |
"content": {"English": "answer content_text"}, | |
"targets_attributes": [{"question_id": 4}], | |
"correct": true | |
}, | |
{ | |
"type": "NoResponse", | |
"content": {"English": "no response content_text"}, | |
"targets_attributes": [{"question_id": 4}] | |
} | |
], | |
"position_attributes": {"x": 400, "y": 300} | |
}, | |
{ | |
"id": 4, | |
"type": "YesNo", | |
"content": {"English": "wu tang is for the children"}, | |
"scheduling_attributes": { | |
"type": "immediate" | |
}, | |
"connections_attributes": [ | |
{ | |
"type": "Yes", | |
"content": {"English": "answer content_text"}, | |
"targets_attributes": [{"question_id": 5}], | |
"correct": true | |
}, | |
{ | |
"type": "No", | |
"targets_attributes": [{"question_id": 6}], | |
"correct": false | |
}, | |
{ | |
"type": "NoResponse", | |
"content": {"English": "no response content_text"}, | |
"targets_attributes": [] | |
} | |
], | |
"position_attributes": {"x": 450, "y": 350} | |
}, | |
{ | |
"id": 5, | |
"type": "Numerical", | |
"content": {"English": "numerical range"}, | |
"scheduling_attributes": { | |
"type": "immediate" | |
}, | |
"connections_attributes": [ | |
{ | |
"type": "Numerical", | |
"params": "0-100", | |
"content": {"English": "answer content_text"}, | |
"targets_attributes": [{"question_id": 6}], | |
"correct": false | |
}, | |
{ | |
"type": "Numerical", | |
"params": "101-200", | |
"content": {"English": "answer content_text"}, | |
"targets_attributes": [{"question_id": 6}], | |
"correct": false | |
}, | |
{ | |
"type": "Numerical", | |
"params": "201-300", | |
"content": {"English": "answer content_text"}, | |
"targets_attributes": [{"question_id": 7}], | |
"correct": true | |
}, | |
{ | |
"type": "NoResponse", | |
"targets_attributes": [{"question_id": 8}] | |
} | |
], | |
"position_attributes": {"x": 500, "y": 400} | |
}, | |
{ | |
"id": 6, | |
"type": "Scale", | |
"content": {"English": "multiple foo"}, | |
"scheduling_attributes": { | |
"type": "immediate" | |
}, | |
"connections_attributes": [ | |
{ | |
"type": "Scale", | |
"params": "1-7", | |
"content": {"English": "answer content_text"}, | |
"targets_attributes": [{"question_id": 7}] | |
}, | |
{ | |
"type": "NoResponse", | |
"content": {"English": "no response content_text"}, | |
"targets_attributes": [{"question_id": 8}] | |
} | |
], | |
"position_attributes": {"x": 550, "y": 450} | |
}, | |
{ | |
"id": 7, | |
"type": "Date", | |
"content": {"English": "foo bar en", "Spanish": "foo bar es"}, | |
"scheduling_attributes": { | |
"type": "immediate" | |
}, | |
"connections_attributes": [ | |
{ | |
"type": "Date", | |
"content": {"English": "answer content_text"}, | |
"targets_attributes": [{"question_id": 8}] | |
}, | |
{ | |
"type": "NoResponse", | |
"content": {"English": "no response content_text"}, | |
"targets_attributes": [{"question_id": 8}] | |
} | |
], | |
"position_attributes": {"x": 600, "y": 500} | |
}, | |
{ | |
"id": 8, | |
"type": "NoResponse", | |
"content": {"English": "last one"}, | |
"scheduling_attributes": { | |
"type": "immediate" | |
}, | |
"connections_attributes": [ | |
{ | |
"type": "NoResponse", | |
"content": {"English": "no response content_text"}, | |
"targets_attributes": [] | |
} | |
], | |
"position_attributes": {"x": 650, "y": 550} | |
}, | |
{ | |
"id": 9, | |
"_destroy": true, // Set this to true to destroy a question | |
"persisted_id": 42 // This is the question id on the database, | |
// it must be set when _destroy == true | |
} | |
] | |
}} |
danielnc
commented
Aug 29, 2014
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment