Specify schema-name for usage stats

I am using a MS SQL Database for logging and have specified the url, username and password in the application.yml:

proxy:
  usage-stats:
    - url: jdbc:sqlserver://<server-address>\<instance>;databaseName=<database>;encrypt=true;trustServerCertificate=true;
      username: <username>
      password: <password>
  usage-stats-table-name: event

However, this writes to the standard schema dbo. In compliance with our Data Governance policies, I need to write to a different schema. How can I specify the name of the schema? It is not listed as one of the url-connection properties: Setting the connection properties - JDBC Driver for SQL Server | Microsoft Learn

It seems specifying the schema would need to be implemented somewhere here: