# The ArtifactAllowlistInfo object

## Attributes

- `artifact_matchers` (array of object)
  A list of allowed artifact match patterns.
  - `artifact` (string)
    The artifact path or maven coordinate
  - `match_type` (string)
    The pattern matching type of the artifact
    Possible values: `MATCH_TYPE_UNSPECIFIED`, `PREFIX_MATCH`
- `metastore_id` (string)
  Unique identifier of parent metastore.
- `created_by` (string)
  Username of the user who set the artifact allowlist.
- `created_at` (int64)
  Time at which this artifact allowlist was set, in epoch milliseconds.

## Example

```json
{
  "artifact_matchers": [
    {
      "artifact": "string",
      "match_type": "string"
    }
  ],
  "metastore_id": "string",
  "created_by": "string",
  "created_at": 0
}
```


