/** * Serializer for adding a mentor to a disclaimer. * * This serializer validates the mentor_id input and provides proper schema documentation * for the add_mentor action. */ export type AddMentorToDisclaimer = { /** * The unique_id of the mentor to add to the disclaimer. */ mentor_id: string; };