Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .last-synced-sha
Original file line number Diff line number Diff line change
@@ -1 +1 @@
38a09d011329884c1be01721e2f513fd9c1ad742
4b27ae332c9ef45dd1aafea23b6a5d544dbeaf47
37 changes: 37 additions & 0 deletions spec/open-api-spec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21599,6 +21599,7 @@ components:
- agent.registration.deleted
- agent.registration.expired
- agent.registration.organization.switched
- agent.registration.revoked
- authentication.email_verification_succeeded
- authentication.magic_auth_failed
- authentication.magic_auth_succeeded
Expand Down Expand Up @@ -25773,6 +25774,42 @@ components:
- data
- created_at
- object
- type: object
properties:
id:
type: string
description: Unique identifier for the event.
example: event_01EHZNVPK3SFK441A1RGBFSHRT
event:
type: string
const: agent.registration.revoked
data:
type: object
properties:
agent_registration_id:
type: string
description: The agent registration that was revoked.
example: agent_reg_01EHWNCE74X7JSDV0X3SZ3KJNY
required:
- agent_registration_id
description: The event payload.
created_at:
format: date-time
type: string
description: An ISO 8601 timestamp.
example: '2026-01-15T12:00:00.000Z'
context:
$ref: '#/components/schemas/EventContextDto'
object:
type: string
description: Distinguishes the Event object.
const: event
required:
- id
- event
- data
- created_at
- object
- type: object
properties:
id:
Expand Down
Loading