An Azure relational database service.
It seems to me you are making reference to SQL Server jobs or Elastic Jobs inside that database. It seems you make reference to them to know the status or results of scheduled job executions from inside that database. Please examine the programming objects and views making reference to those jobs and remove those references.
Examine a view or object named [jobs].[job_versions]. To create a bacpac you need to eliminate external references (to objects not stored in this database)
NOTE ADDED Dec 14, 2021:
On Azure DevOps you may receive this error SQL71501 if the builds are targeting Azure SQL Database but they use a feature like File Table that is not supported on Azure SQL. Changing the target to SQL Server (if Production servers are SQL Server instances) can solve the issue.