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 serialization.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ Example:
"cloudEventsVersion": "0.1",
"eventID": "6480da1a-5028-4301-acc3-fbae628207b3",
"source": "http://example.com/repomanager",
"eventType": "created",
"eventType": "com.example.repro.create",
"eventTypeVersion": "v1.5",
"eventTime": "2018-04-01T23:12:34Z",
"schemaURL": "https://product.example.com/schema/repo-create",
Expand Down
15 changes: 8 additions & 7 deletions spec.md
Original file line number Diff line number Diff line change
Expand Up @@ -264,14 +264,15 @@ that contains both context and data).

### eventType
* Type: String
* Description: Type of the event `data`. Producers can specify the format of
this, depending on their service. This enables the interpretation of `data`,
and can be used for routing, policy and more.
* Description: Type of occurrence which has happened. Often this
property is used for routing, observability, policy enforcement, etc.
* Constraints:
* REQUIRED
* MUST be a non-empty string
* Examples:
* customer.created
* REQUIRED
* MUST be a non-empty string
* SHOULD be prefixed with a reverse-DNS name. The prefixed domain dictates
the organization which defines the semantics of this event type.
* Examples
* com.github.pull.create

### eventTypeVersion
* Type: String
Expand Down