All other annotations from symfony and doctrine dont prefix their annotations and its common practice to import the whole annotation namespace into a short prefix:
use Doctrine\ORM\Mapping as ORM;
use Symfony\Component\Validator\Constraints as Assert;
use ApiPlatform\Core\Annotation as API; // results in @API\ApiResource or @API\ApiProperty
This is just pure cosmetic and low prio.
All other annotations from symfony and doctrine dont prefix their annotations and its common practice to import the whole annotation namespace into a short prefix:
This is just pure cosmetic and low prio.