[Answer]-Validation in django rest framework

1👍

You should import the UniqueValidator from the rest_framework.validators module:

from rest_framework.validators import UniqueValidator

Leave a comment