Response maps: Difference between revisions
Jump to navigation
Jump to search
| Line 1: | Line 1: | ||
Maps a connection between the [[participants]] as reviewers and [[participants]] or [[teams]] as reviewees | Maps a connection between the [[participants]] as reviewers and [[participants]] or [[teams]] as reviewees | ||
==Response maps variable documentation== | ==Response maps variable documentation (Reimplementation)== | ||
{| class="wikitable" | {| class="wikitable" | ||
!Field Name !!Type !! | !Field Name !!Type !!Description | ||
|- | |- | ||
!id | !id | ||
|int(11) | |int(11) | ||
|The unique record id | |The unique record id | ||
|- | |- | ||
!reviewed_object_id | !reviewed_object_id | ||
|int(11) | |int(11) | ||
| Line 20: | Line 20: | ||
!reviewee_id | !reviewee_id | ||
|int(11) | |int(11) | ||
|Dependent on which subclass of ResponseMap this object is. | |Dependent on which subclass of ResponseMap this object is. For a ReviewResponseMap, the [[teams|team]] (AssignmentTeam) receiving the response. For a TeammateReviewResponseMap, the AssignmentParticipant who is being reviewed. | ||
|- | |- | ||
!type | !type | ||
|varchar(255) | |varchar(255) | ||
|Used for subclassing the response map. Available subclasses are ReviewResponseMap, MetareviewResponseMap, FeedbackResponseMap, TeammateReviewResponseMap | |Used for subclassing the response map. Available subclasses are ReviewResponseMap, MetareviewResponseMap, FeedbackResponseMap, TeammateReviewResponseMap | ||
|- | |||
!created_at | |||
|DATETIME | |||
|Date and Time for when the record was created | |||
|- | |||
!updated_at | |||
|DATETIME | |||
|Date and Time when the last update was made | |||
|- | |||
!for_calibration | |||
|int(11) | |||
|Tells whether the record will be used for calibration or not. | |||
|} | |||
==Response maps variable documentation (2023 version)== | |||
{| class="wikitable" | |||
!Field Name !!Type !!Description | |||
|- | |||
!id | |||
|int(11) | |||
|The unique record id | |||
|- | |||
!reviewed_object_id | |||
|int(11) | |||
|The object being reviewed in the [[responses|response]]. Possible objects include other ResponseMaps or [[assignments]] | |||
|- | |||
!reviewer_id | |||
|int(11) | |||
|The [[participants|participant]] (actually AssignmentParticipant) providing the response | |||
|- | |||
!reviewee_id | |||
|int(11) | |||
|Dependent on which subclass of ResponseMap this object is. For a ReviewResponseMap, the [[teams|team]] (AssignmentTeam) receiving the response. For a TeammateReviewResponseMap, the AssignmentParticipant who is being reviewed. | |||
|- | |||
!type | |||
|varchar(255) | |||
|Used for subclassing the response map. Available subclasses are ReviewResponseMap, MetareviewResponseMap, FeedbackResponseMap, TeammateReviewResponseMap | |||
|- | |- | ||
!created_at | !created_at | ||
| Line 36: | Line 74: | ||
!calibrate_to | !calibrate_to | ||
|tinyint(1) | |tinyint(1) | ||
|Tells whether the record will be used for calibration or not. | |Tells whether the record will be used for calibration or not. | ||
|} | |} | ||
Back to the [[Documentation_on_Database_Tables|database documentation]] | Back to the [[Documentation_on_Database_Tables|database documentation]] | ||
Latest revision as of 03:26, 9 December 2025
Maps a connection between the participants as reviewers and participants or teams as reviewees
Response maps variable documentation (Reimplementation)
| Field Name | Type | Description |
|---|---|---|
| id | int(11) | The unique record id |
| reviewed_object_id | int(11) | The object being reviewed in the response. Possible objects include other ResponseMaps or assignments |
| reviewer_id | int(11) | The participant (actually AssignmentParticipant) providing the response |
| reviewee_id | int(11) | Dependent on which subclass of ResponseMap this object is. For a ReviewResponseMap, the team (AssignmentTeam) receiving the response. For a TeammateReviewResponseMap, the AssignmentParticipant who is being reviewed. |
| type | varchar(255) | Used for subclassing the response map. Available subclasses are ReviewResponseMap, MetareviewResponseMap, FeedbackResponseMap, TeammateReviewResponseMap |
| created_at | DATETIME | Date and Time for when the record was created |
| updated_at | DATETIME | Date and Time when the last update was made |
| for_calibration | int(11) | Tells whether the record will be used for calibration or not. |
Response maps variable documentation (2023 version)
| Field Name | Type | Description |
|---|---|---|
| id | int(11) | The unique record id |
| reviewed_object_id | int(11) | The object being reviewed in the response. Possible objects include other ResponseMaps or assignments |
| reviewer_id | int(11) | The participant (actually AssignmentParticipant) providing the response |
| reviewee_id | int(11) | Dependent on which subclass of ResponseMap this object is. For a ReviewResponseMap, the team (AssignmentTeam) receiving the response. For a TeammateReviewResponseMap, the AssignmentParticipant who is being reviewed. |
| type | varchar(255) | Used for subclassing the response map. Available subclasses are ReviewResponseMap, MetareviewResponseMap, FeedbackResponseMap, TeammateReviewResponseMap |
| created_at | DATETIME | Date and Time for when the record was created |
| updated_at | DATETIME | Date and Time when the last update was made |
| calibrate_to | tinyint(1) | Tells whether the record will be used for calibration or not. |
Back to the database documentation