# CRDB object

```json metadata
{
  "title": "CRDB object",
  "description": "An object that represents an Active-Active database",
  "categories": ["docs","operate","rs"],
  "tableOfContents": {"sections":[]}

,
  "codeExamples": []
}
```
An object that represents an Active-Active database.

| Name | Type/Value | Description |
|------|------------|-------------|
| guid | string | The global unique ID of the Active-Active database |
| causal_consistency | boolean | Enables causal consistency across CRDT instances |
| default_db_config| [CRDB database_config](https://redis.io/docs/latest/operate/rs/references/rest-api/objects/crdb/database_config) object | Default database configuration applied to all instances in the CRDB object. In most cases, instances should use the same configuration. If you need to override `default_db_config` or add configuration values for specific instances, you can use `db_config` in individual [instance objects](https://redis.io/docs/latest/operate/rs/references/rest-api/objects/crdb/instance_info). For a list of which settings must be identical across all instances and which to set per instance, see the [CRDB database config object](https://redis.io/docs/latest/operate/rs/references/rest-api/objects/crdb/database_config) reference. |
| encryption | boolean | Encrypt communication |
| featureset_version | integer | Active-Active database active FeatureSet version
| instances | array of [CRDB instance_info](https://redis.io/docs/latest/operate/rs/references/rest-api/objects/crdb/instance_info) objects | |
| local_databases | object | Mapping of instance IDs for local databases to local BDB IDs<br />[{
  "bdb_uid": string,
  "id": integer
}, ...]  |
| managed_by | string | The component that manages the Active-Active database |
| modules | object | Modules used by the Active-Active database<br />[{
  "featureset_version": integer,
  "module_name": string
}, ...]  |
| name | string | Name of Active-Active database |
| protocol_version | integer | Active-Active database active protocol version |
| <span class="break-all">volatile_config_fields</span> | array of strings | A list of database configuration fields that will be set even if unchanged |

