Assignments: Difference between revisions

From Expertiza_Wiki
Jump to navigation Jump to search
(Created page with "The Assignments table contains one record for each assignment created by an instructor or administrator. ==Assignment Variable Documentation== {| class="wik...")
 
Line 54: Line 54:
|number of reviewers who have reviewed the assignment.
|number of reviewers who have reviewed the assignment.
|-  
|-  
!review_strategy_id    
!reviews_visible_to_all    
|tinyint(1) 
|if false, other reviewers can't see this reviewer's review.
|-
!num_reviewers 
|int(10) 
|Number of reviewers.
|-
!spec_location 
|text 
|url of the assignment.
|-
!max_team_size
|int(11)   
|int(11)   
|the review strategy, e.g., "rubric", "ranking"
|Number of people in the team.
|-
!staggerred_deadline
|tinyint(1) 
|Indicating whether deadlines are staggered or not *************
|-
!allow_suggestions
|tinyint(1) 
|Indicating whether suggestions are allowed or not *************
|-
!days_between_submissions
|int(4) 
|Number of Days available between submissions *************
|-
!review_assignment_strategy
|varchar(12) 
|The review strategy, e.g., "rubric", "ranking"
|-
!review_topic_threshold
|int(4) 
|***********************************
|-
!copy_flag
|tinyint(1) 
|Whether the assignment has a copy or not. *************
|-
!rounds_of_reviews
|int(4) 
|Total number of rounds of reviews done for the assignment *************
|-
!microtask
|tinyint(1) 
|Indicating whether there is any microtask present. *************
|-
!require_quiz
|tinyint(1) 
|Indicating whether the assignment requires a quiz or not. *************
|-
!num_quiz_questions
|int(4) 
|Total number of questions present for the quiz. *************
|-
!is_coding_assignment
|tinyint(1) 
|Indicating whether whether the given assignment is a coding assignment or not *************
|-
!is_intelligent
|tinyint(1) 
|Indicating whether the assignment is intelligent or not *************
|-
!calculate_penalty
|tinyint(1) 
|Indicating whether penalty needs to be calculated for the given assignment. *************
|-
!late_policy_id
|int(4) 
|ID in the ******late policy table***** *************. Indicating which late policy is applied here.
|-
!is_penalty_calculated
|tinyint(1) 
|Indicating whether the penalty for the assignment is calculated or not. *************
|-  
|-  
!mapping_strategy_id 
!max_bids
|int(11)   
|int(4)   
|the review-mapping strategy, e.g., "static", "dynamic"
|Total amount of bids given for this assignment. *************
|-  
!show_teammate_reviews
|tinyint(1) 
|Indicating whether teammate reviews are shown or not. *************
|-  
|-  
!review_questionnaire_id 
!availability_flag
|int(11)   
|tinyint(1)   
|This references the questionnaire table which and the id of the questionnaire in that table. It is a foreign key.
|Indicating whether the given assignment is available or not. *************
|-  
|-  
!review_of_review_questionnaire_id 
!use_bookmark
|int(11)   
|tinyint(1)   
|This references the questionnaire table and the questionnaire id.
|Indicating whether bookmarks are used or not. *************
|-  
|-  
!teammate_review_questionnaire_id 
!can_review_same_topic
|int(10)   
|tinyint(1)   
|This references the questionnaire table and the questionnaire id.
|Indicating whether a reviewer can review the same topic again. *************
|-  
|-  
!review_weight 
!can_choose_topic_to_review
|float  
|tinyint(1)  
|the percentage that reviews count for; the balance of grade depends on reviews of reviews
|Indicating whether a reviewer can choose a topic to review *************
|-  
|-  
!reviews_visible_to_all 
!is_calibrated
|tinyint(1)   
|tinyint(1)   
|if false, other reviewers can't see this reviewer's review
|Indicating whether the assignment is calibrated or not. *************
|-  
|-  
!team_assignment 
!is_selfreview_enabled
|tinyint(1)   
|tinyint(1)   
|It's a flag to indicate whether it is a team assignment or individual assignment
|Indicating whether an author can review his/her work. *************
|-  
|-  
!wiki_type_id 
!reputation_algorithm
|int(11)   
|varchar(12)   
|id of wiki assignment type
|This field gives us the information of the reputation algorithm used for this assignment. *************
|-  
|-  
!require_signup 
!is_anonymous
|tinyint(1)   
|tinyint(1)   
|if true, users need to sign up through Shimmer before submitting; if false, everyone in course may submit; if assignment not in course, default is that no one may submit.
|Indicating whether whether the reviewer information is anonymous or not. *************
|-  
|-  
!num_reviewers 
!num_reviews_required 
|int(10)   
|int(4) 
|Number of reviewers.
|Total number of reviews required for this assignment. *************
|-
!num_metareviews_required 
|int(4) 
|Total number of metareviews required for this assignment. *************
|-
!num_metareviews_allowed 
|int(4)   
|Total number of metareviews allowed for this assignment. *************
|-  
|-  
!spec_location 
!num_reviews_allowed 
|text  
|int(4)  
|url of the assignment
|Total number of reviews allowed for this assignment. *************
|-  
|-  
!author_feedback_questionnaire_id 
!simicheck 
|int(11)   
|int(4)   
|This references the questionnaire table and the questionnaire id.
|SIMI Check Value. *************
|-  
|-  
!max_team_size
!simicheck_threshold
|int(11)   
|int(4)   
|Number of people in the team.
|SIMI check threshold value. *************
|}  
|}  
<!--
{| class="wikitable"
|-
! Field Name
! Type
! Description
|-
! id
| int(11)
| This object's unique ID value. One per object.
|-
! created_at
| datetime
| The date/time stamp when this record was created
|-
! updated_at
| datetime
| The date/time stamp when this record was last modified
|-
! name
| varchar(255)
| The name given to this assignment by the instructor/administrator who created it
|-
! directory_path
| varchar(255)
| If this is an assignment to which files are being submitted, this is the first part of the directory path for the submissions.  If this is a wiki assignment, it is the base URL for wiki pages submitted by the creators
|-
! submitter_count
| int(10)
| Number of creators who have submitted so far to this assignment
|-
! course_id
| int(11)
| ID in the [http://wikis.lib.ncsu.edu/index.php/Courses_table Courses] table of the course with which this assignment is associated
|}
-->
Back to the [[Documentation_on_Database_Tables|database documentation]]
Back to the [[Documentation_on_Database_Tables|database documentation]]

Revision as of 23:46, 22 April 2018

The Assignments table contains one record for each assignment created by an instructor or administrator.

Assignment Variable Documentation

Field Name Type Description
id int(11) This object's unique ID value. One per object.
created_at datetime The date/time stamp when this record was created
updated_at datetime The date/time stamp when this record was last modified
name varchar(255) The name given to this assignment by the instructor/administrator who created it
directory_path varchar(255) If this is an assignment to which files are being submitted, this is the first part of the directory path for the submissions. If this is a wiki assignment, it is the base URL for wiki pages submitted by the creators
submitter_count int(10) Number of creators who have submitted so far to this assignment
course_id int(11) ID in the Courses table of the course with which this assignment is associated
instructor_id int(11) ID of a instructor who created the assignment
private tinyint(1) whether assignment is visible to other instructors
num_reviews int(11) number of reviews done by a student for this assignment
num_review_of_reviews int(10) number of reviews of reviews done by a student for this assignment
num_review_of_reviewers int(11) number of reviewers who have reviewed the assignment.
reviews_visible_to_all tinyint(1) if false, other reviewers can't see this reviewer's review.
num_reviewers int(10) Number of reviewers.
spec_location text url of the assignment.
max_team_size int(11) Number of people in the team.
staggerred_deadline tinyint(1) Indicating whether deadlines are staggered or not *************
allow_suggestions tinyint(1) Indicating whether suggestions are allowed or not *************
days_between_submissions int(4) Number of Days available between submissions *************
review_assignment_strategy varchar(12) The review strategy, e.g., "rubric", "ranking"
review_topic_threshold int(4) ***********************************
copy_flag tinyint(1) Whether the assignment has a copy or not. *************
rounds_of_reviews int(4) Total number of rounds of reviews done for the assignment *************
microtask tinyint(1) Indicating whether there is any microtask present. *************
require_quiz tinyint(1) Indicating whether the assignment requires a quiz or not. *************
num_quiz_questions int(4) Total number of questions present for the quiz. *************
is_coding_assignment tinyint(1) Indicating whether whether the given assignment is a coding assignment or not *************
is_intelligent tinyint(1) Indicating whether the assignment is intelligent or not *************
calculate_penalty tinyint(1) Indicating whether penalty needs to be calculated for the given assignment. *************
late_policy_id int(4) ID in the ******late policy table***** *************. Indicating which late policy is applied here.
is_penalty_calculated tinyint(1) Indicating whether the penalty for the assignment is calculated or not. *************
max_bids int(4) Total amount of bids given for this assignment. *************
show_teammate_reviews tinyint(1) Indicating whether teammate reviews are shown or not. *************
availability_flag tinyint(1) Indicating whether the given assignment is available or not. *************
use_bookmark tinyint(1) Indicating whether bookmarks are used or not. *************
can_review_same_topic tinyint(1) Indicating whether a reviewer can review the same topic again. *************
can_choose_topic_to_review tinyint(1) Indicating whether a reviewer can choose a topic to review *************
is_calibrated tinyint(1) Indicating whether the assignment is calibrated or not. *************
is_selfreview_enabled tinyint(1) Indicating whether an author can review his/her work. *************
reputation_algorithm varchar(12) This field gives us the information of the reputation algorithm used for this assignment. *************
is_anonymous tinyint(1) Indicating whether whether the reviewer information is anonymous or not. *************
num_reviews_required int(4) Total number of reviews required for this assignment. *************
num_metareviews_required int(4) Total number of metareviews required for this assignment. *************
num_metareviews_allowed int(4) Total number of metareviews allowed for this assignment. *************
num_reviews_allowed int(4) Total number of reviews allowed for this assignment. *************
simicheck int(4) SIMI Check Value. *************
simicheck_threshold int(4) SIMI check threshold value. *************

Back to the database documentation