create_student_anonymization_map
Generate a secure CSV file mapping real student data to anonymous IDs for a course, enabling faculty to identify students while maintaining privacy.
Instructions
Create a local CSV file mapping real student data to anonymous IDs for a course.
This tool generates a de-anonymization key that allows faculty to identify students
from their anonymous IDs. The file is saved locally and should be kept secure.
Args:
course_identifier: The Canvas course code (e.g., badm_554_120251_246794) or ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
course_identifier | Yes |
Input Schema (JSON Schema)
{
"properties": {
"course_identifier": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
}
],
"title": "Course Identifier"
}
},
"required": [
"course_identifier"
],
"type": "object"
}