Servers list in appsettings.json

I am using the version 2.7.26 of the CouchbaseNetClient and woud like to know the correct format for the Servers array in appsettings.json. I am using

“Couchbase”: {
“Servers”: [“http://server1”, “http://server2”],
“UserName”: “CbUser”,
“Password”: “********”,
“UseSsl”: false
}

Is this the correct format for 2.7.26?
What about 3.1.7?

Thanks,
T

@ticontask -

This should work for SDK2 (its from the integration tests):

{
 "couchbase": {
    "basic": {
      "servers": ["http://localhost1", "http://localhost2"],
    }
}

And this should work for SDK3:

{
"couchbase": {
    "connectionString": "couchbase://localhost1, localhost2",
    "username": "Administrator",
    "password": "password"
  }
}

Jeff