# The RegisteredModelInfo object

## Attributes

- `name` (string)
  The name of the registered model
- `catalog_name` (string)
  The name of the catalog where the schema and the registered model reside
- `schema_name` (string)
  The name of the schema where the registered model resides
- `owner` (string)
  The identifier of the user who owns the registered model
- `comment` (string)
  The comment attached to the registered model
  Constraints: `[ 1 .. 65536 ] characters`
- `storage_location` (string)
  The storage location on the cloud under which model version data files are stored
- `metastore_id` (string)
  The unique identifier of the metastore
- `full_name` (string)
  The three-level (fully qualified) name of the registered model
- `created_at` (int64)
  Creation timestamp of the registered model in milliseconds since the Unix epoch
- `created_by` (string)
  The identifier of the user who created the registered model
- `updated_at` (int64)
  Last-update timestamp of the registered model in milliseconds since the Unix epoch
- `updated_by` (string)
  The identifier of the user who updated the registered model last time
- `aliases` (array of object)
  List of aliases associated with the registered model
  - `alias_name` (string)
    Name of the alias, e.g. 'champion' or 'latest_stable'
  - `version_num` (int64)
    Integer version number of the model version to which this alias points.
  - `id` (string)
    The unique identifier of the alias
  - `model_name` (string)
    The name of the parent registered model of the model version, relative to parent schema
  - `catalog_name` (string)
    The name of the catalog containing the model version
  - `schema_name` (string)
    The name of the schema containing the model version, relative to parent catalog
- `browse_only` (boolean)
  Indicates whether the principal is limited to retrieving metadata for the associated object through the BROWSE privilege when include_browse is enabled in the request.

## Example

```json
{
  "name": "string",
  "catalog_name": "string",
  "schema_name": "string",
  "owner": "string",
  "comment": "string",
  "storage_location": "string",
  "metastore_id": "string",
  "full_name": "string",
  "created_at": 0,
  "created_by": "string",
  "updated_at": 0,
  "updated_by": "string",
  "aliases": [
    {
      "alias_name": "string",
      "version_num": 0,
      "id": "string",
      "model_name": "string",
      "catalog_name": "string",
      "schema_name": "string"
    }
  ],
  "browse_only": true
}
```


