diff options
Diffstat (limited to 'docs/static/schemas/v4.39/json-schema/configuration.json')
| -rw-r--r-- | docs/static/schemas/v4.39/json-schema/configuration.json | 30 | 
1 files changed, 26 insertions, 4 deletions
diff --git a/docs/static/schemas/v4.39/json-schema/configuration.json b/docs/static/schemas/v4.39/json-schema/configuration.json index 39d9ad7d4..2e72ef96c 100644 --- a/docs/static/schemas/v4.39/json-schema/configuration.json +++ b/docs/static/schemas/v4.39/json-schema/configuration.json @@ -3679,7 +3679,7 @@          "address": {            "$ref": "#/$defs/AddressTCP",            "title": "Address", -          "description": "The address of the database." +          "description": "The address of the SQL Server."          },          "database": {            "type": "string", @@ -3723,7 +3723,7 @@          "address": {            "$ref": "#/$defs/AddressTCP",            "title": "Address", -          "description": "The address of the database." +          "description": "The address of the SQL Server."          },          "database": {            "type": "string", @@ -3754,14 +3754,22 @@            "title": "Timeout",            "description": "The timeout for the database connection."          }, +        "tls": { +          "$ref": "#/$defs/TLS" +        },          "schema": {            "type": "string",            "title": "Schema",            "description": "The default schema name to use.",            "default": "public"          }, -        "tls": { -          "$ref": "#/$defs/TLS" +        "servers": { +          "items": { +            "$ref": "#/$defs/StoragePostgreSQLServer" +          }, +          "type": "array", +          "title": "Servers", +          "description": "The fallback PostgreSQL severs to connect to in addition to the one defined by the address."          },          "ssl": {            "$ref": "#/$defs/StoragePostgreSQLSSL", @@ -3811,6 +3819,20 @@        "type": "object",        "description": "StoragePostgreSQLSSL represents the SSL configuration of a PostgreSQL database."      }, +    "StoragePostgreSQLServer": { +      "properties": { +        "address": { +          "$ref": "#/$defs/AddressTCP", +          "title": "Address", +          "description": "The address of the PostgreSQL Server." +        }, +        "tls": { +          "$ref": "#/$defs/TLS" +        } +      }, +      "additionalProperties": false, +      "type": "object" +    },      "TLS": {        "properties": {          "minimum_version": {  | 
