Liquibase doesnt export Schema objects in Sql Server

It connects to SQL Server but doesnt export schema contents to file. That is not the case with other schemas, means it exports them. There are 20-30 tables in the schema indicated in the command below but doesnt exports objects to sql file. What can be the reason for that?

liquibase generate-changelog --changelog-file=Schemas.mssql.sql --overwrite-output-file=true --logLevel=debug --include-schema=true --diff-types=“tables,columns,views,foreignkeys,indexes,primarykeys,sequences,uniqueconstraints” --url=jdbc:sqlserver://ABC;databaseName=XYZ;encrypt=false;IntegratedSecurity=true --schemas=TescilUrun,Satis

Last lines of the output below:

[2024-09-16 10:52:07] FINE [liquibase.configuration] No configuration value for liquibase.generateChangesetCreatedValues aka liquibase.generateChangeSetCreatedValues found
[2024-09-16 10:52:07] FINE [liquibase.configuration] Configuration liquibase.generateChangesetCreatedValues is using the default value of false
[2024-09-16 10:52:07] FINE [liquibase.configuration] Found ‘liquibase.pro.sql.inline’ configuration of ‘true’
legacy configuration ‘liquibase.pro.sql.inline’ of ‘true’
[2024-09-16 10:52:07] FINE [liquibase.diff] ChangedObjectChangeGenerator type order: liquibase.structure.core.Catalog liquibase.structure.core.ForeignKey liquibase.structure.core.Schema liquibase.structure.core.Sequence liquibase.structure.core.Table liquibase.structure.core.Column liquibase.structure.core.PrimaryKey liquibase.structure.core.UniqueConstraint liquibase.structure.core.Index liquibase.structure.core.View
[2024-09-16 10:52:07] FINE [liquibase.diff] MissingObjectChangeGenerator type order: liquibase.structure.core.Catalog liquibase.structure.core.Schema liquibase.structure.core.Sequence liquibase.structure.core.Table liquibase.structure.core.Column liquibase.structure.core.PrimaryKey liquibase.structure.core.UniqueConstraint liquibase.structure.core.Index liquibase.structure.core.ForeignKey liquibase.structure.core.View
[2024-09-16 10:52:07] FINE [liquibase.diff] UnexpectedObjectChangeGenerator type order: liquibase.structure.core.Catalog liquibase.structure.core.ForeignKey liquibase.structure.core.Schema liquibase.structure.core.UniqueConstraint liquibase.structure.core.View liquibase.structure.core.Table liquibase.structure.core.PrimaryKey liquibase.structure.core.Column liquibase.structure.core.Index liquibase.structure.core.Sequence
[2024-09-16 10:52:07] INFO [liquibase.diff] changeSets count: 0
[2024-09-16 10:52:07] INFO [liquibase.diff] No changesets to add to the changelog output.
Generated changelog written to Schemas.mssql.sql
[2024-09-16 10:52:07] INFO [liquibase.ui] Generated changelog written to Schemas.mssql.sql
[2024-09-16 10:52:07] INFO [liquibase.command] Command execution complete
Liquibase command ‘generate-changelog’ was executed successfully.
[2024-09-16 10:52:07] INFO [liquibase.ui] Liquibase command ‘generate-changelog’ was executed successfully.

My experience was that the data export functionality only worked within the context of the users default schema.
So to export data you needed a user who’s default schema is the same as the data you are trying to export. This implies a user who’s default schema can be set, AKA not a sysadmin, and that has read access on the data you are trying to export.
Good luck.