## Example
The following JSON is an example for this configuration component, with standardized configuration component contents replaced by "...":
```json
{ //
// List of full names of databases to be made available.
// Before the backslash is the group name, after the backslash
// the database name.
//
"AvailableDatabases": [ "PUBLIC\\xxx" ]
//
// Users for on-premises mode.
//
, "TdsUsers": ...
}
```
## Definition
References are made to other configuration components :
- [[Users Configuration]]
```json
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "LocalConfigModel.schema.json",
"title": "LocalConfigModel",
"description": "Local (on-premises) mode configuration.",
"type": "object",
"additionalProperties": false,
"properties": {
"AvailableDatabases": {
"anyOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "null"
}
],
"description": "Databases made available, consisting of database name labels in the format GROUP\\NAME."
},
"TdsUsers": {
"anyOf": [
{
"$ref": "Users.schema.json"
},
{
"type": "null"
}
],
"description": "The TDS protocol user accounts."
}
}
}
```