The Event Registry page (Documentation Index
Fetch the complete documentation index at: https://docs.encoreos.io/llms.txt
Use this file to discover all available pages before exploring further.
/settings/automation/events) provides a searchable, filterable catalogue of all registered workflow events across the platform, showing each event’s owning core, category, consumer count, and governance status.
Overview
The page is gated byfw.events.view. It uses useEventRegistry with filters for owning_core, category, and search text, all scoped to currentOrganization?.id. Stats are derived from the filtered events: total count, active count, deprecated count, and total consumer count. Results render in a Table with columns for event name, owning core, category, consumer count, status badge, and row actions. A EventDetailSheet opens when a row is selected. A DeprecateEventDialog is triggered from the row action menu. Filters include a search input, an Owning Core select sourced from OWNING_CORES, and a Category select sourced from EVENT_CATEGORIES.
Who it’s for
Requires permissionfw.events.view.
Before you start
- You must hold
fw.events.view. - Event schemas are defined by platform modules; this page is read-access for browsing and governance, not event creation.
Steps
Open the Event Registry
Navigate to
/settings/automation/events. All registered events load in the table.View event details
Click a row to open
EventDetailSheet, which shows the full event schema and governance metadata.Key concepts
Owning core
Owning core
Each event is owned by a specific platform core (e.g.,
fw, pf, cl). The OWNING_CORES constant defines the valid values.Event categories
Event categories
Events are grouped by category (e.g.,
lifecycle, notification, integration). EVENT_CATEGORIES defines the available values.Consumer count
Consumer count
Consumer count reflects how many automation rules, workflows, or subscriptions reference a given event. Deprecating an event may affect these consumers.
Related
Platform Foundation
Platform Foundation overview.
Governance & parity
Documentation coverage and governance.
This page documents shipped product behavior. It is not medical, legal, or
billing advice. Verify against your organization’s policies and applicable
regulations before using it for clinical, compliance, or billing decisions.
Protected health information (PHI) shown in the product is governed by your
tenant’s access controls and is never exposed in this documentation.
Documentation sources
Documentation sources
- src/routes/platform.tsx
- src/cores/fw/pages/EventRegistryPage.tsx
- src/cores/fw/hooks/useEventRegistry.ts