Returns information about the specified database. This request returns information about EDMs, RDMs, or custom databases.

The response returns information about the database including its status and size:

{
  "name": "myRDM",
  "status": "Ready",
  "error": "string",
  "sizeInMb": 16,
  "createdAt": "2024-04-10T20:45:28.775Z",
  "pinned": true,
  "pinExpiration": "2024-04-10T20:45:28.775Z",
  "databaseSchema": "Rdm",
  "databaseVersion": "24",
  "lastIndexUpdate": "2024-04-10T20:45:28.775Z",
  "registered": true,
  "exposureSetId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
  "owner": "[email protected]",
  "secured": true,
  "groups": [
    {
      "groupId": "ad422c53-d970-4e90-b50e-c14aa18bb2bd",
      "groupName": "Admin"
    },
    {
      "groupId": "a5d11079-4c73-4863-9de1-0790d316b630",
      "groupName": "Engineering Support"
    }
  ]
}
PropertyDescription
nameName of this database.
statusStatus of this database. One of Ready...
errorAny errors relating to this database.
sizeInMbSize of this database in MB.
createdAtTimestamp of database creation date.
pinnedIf true, database is pinned.
pinExpirationTimestamp of pin expiration date. If pinned is true and no pinExpiration is specfied, the database is permanently pinned.
databaseSchemaSchema of this database. One of Edm, Rdm, or Unknown (for custom databases)
databaseVersionSchema version of EDM or RDM database. For example, 18, 21, 24
lastIndexUpdateTimestamp of last database update based on query.
registeredIf true, EDM is registered with Risk Modeler. Registered EDMs are accessible via Risk Modeler and Platform APIs.
exposureSetIdID of the exposure set.
ownerName of role or login that owns the database.
securedIf true, this database is secured and access is restricted to the owner and members assigned groups.
groupsArray of assigned groups identified by groupId and groupName. Members of these groups can access this database.
Language
URL