Liquibase support DocumentDB

We use this for DocumentDB, getting below issue,

strong textCaused by: com.mongodb.MongoCommandException: Command failed with error 303: ‘Feature not supported: Document Validaton’ on server vsdocdb01.com:27017. The full response is {“ok”: 0.0, “code”: 303, “errmsg”: “Feature not supported: Document Validaton”, “operationTime”: {"$timestamp": {“t”: 1631098683, “i”: 1}}}

Can any one confirm, whether Liquibase supports DocumentDB officially?

I do not see DocumentDB on the list of supported databases:

Even MongoDB also is not in the List. Is it true?

MongoDB is supported via an extension:

https://docs.liquibase.com/workflows/database-setup-tutorials/mongodb.html

Here is a likely workaround for the DocumentDB “Document Validation” error when using the MongoDB extension to manage DocumentDB emulating MongoDB 4.0.

Set this system property to get past the error:

System.setProperty("liquibase.mongodb.supportsValidator", "false

Here is the full tutorial on using DocumentDB via Mongo DB emulation.