Source code for server.schemas.submission.submission_w_team

from server.schemas.submission.submission_base import SubmissionBase


[docs]class SubmissionWTeam(SubmissionBase): """ Schema for Submission using SubmissionBase and includes team_uuid. Separated the team uuid to protect it. Only the team that owns the uuid should be able to access their submission data. """ team_uuid: str