# The Experiment object

An experiment and its metadata.

## Attributes

- `experiment_id` (string)
  Unique identifier for the experiment.
- `name` (string)
  Human readable name that identifies the experiment.
- `artifact_location` (string)
  Location where artifacts for the experiment are stored.
- `lifecycle_stage` (string)
  Current life cycle stage of the experiment: "active" or "deleted".
   Deleted experiments are not returned by APIs.
- `last_update_time` (int64)
  Last update time
- `creation_time` (int64)
  Creation time
- `tags` (array of object)
  Tags: Additional metadata key-value pairs.
  - `key` (string)
    The tag key.
  - `value` (string)
    The tag value.

## Example

```json
{
  "experiment_id": "string",
  "name": "string",
  "artifact_location": "string",
  "lifecycle_stage": "string",
  "last_update_time": 0,
  "creation_time": 0,
  "tags": [
    {
      "key": "string",
      "value": "string"
    }
  ]
}
```


