/** * Serializer for removing a mentor from a disclaimer. * * This serializer validates the mentor_id input and provides proper schema documentation * for the remove_mentor action. */ export type RemoveMentorFromDisclaimer = { /** * The unique_id of the mentor to remove from the disclaimer. */ mentor_id: string; };