# `PolarExpress.Schemas.EventTypeWithStats`
[🔗](https://github.com/jeffhuen/polar_express/blob/main/lib/polar_express/schemas/event_type_with_stats.ex#L2)

EventTypeWithStats

# `t`

```elixir
@type t() :: %PolarExpress.Schemas.EventTypeWithStats{
  created_at: DateTime.t() | nil,
  first_seen: DateTime.t() | nil,
  id: String.t() | nil,
  label: String.t() | nil,
  label_property_selector: String.t() | nil,
  last_seen: DateTime.t() | nil,
  modified_at: DateTime.t() | nil,
  name: String.t() | nil,
  occurrences: integer() | nil,
  organization_id: String.t() | nil,
  source: PolarExpress.Schemas.EventSource.t() | nil
}
```

* `created_at` - Creation timestamp of the object. Format: date-time.
* `first_seen` - The first time the event occurred. Format: date-time.
* `id` - The ID of the object. Format: uuid4.
* `label` - The label for the event type.
* `label_property_selector` - Property path to extract dynamic label from event metadata. Nullable.
* `last_seen` - The last time the event occurred. Format: date-time.
* `modified_at` - Last modification timestamp of the object. Nullable.
* `name` - The name of the event type.
* `occurrences` - Number of times the event has occurred.
* `organization_id` - The ID of the organization owning the event type. Format: uuid4.
* `source` - The source of the events (system or user).

# `schema_name`

---

*Consult [api-reference.md](api-reference.md) for complete listing*
