Hi NimaiAhluwalia-9887,
There is no MS document about how to downgrade of SQL Server edition. And there is no direct method to do that, you have to uninstall SQL server enterprise and install SQL server standard. You need to backup user and system databases, install SQL Server standard and restore databases.
In addition, before you downgrade, runs this query in all your databases:
SELECT *FROM sys.dm_db_persisted_sku_features
If it returns any rows, you cannot restore that database on Standard Edition.
If the response helped, do "Accept Answer" and upvote it.
Best regards,
Cathy