You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Custom schemas can be loaded into the SDK.
If a consumed event includes a custom schema, it can be loaded
from the SDK local DB and the event can be validated accordingly.
Added an example about parsing an event with a custom schema.
Signed-off-by: Andrea Frittoli <[email protected]>
examples.PanicOnError(err, "cannot load the custom schema file")
82
94
```
83
95
84
96
To see the event, let's render it as JSON and log it:
85
97
86
98
```golang
87
99
// Render the event as JSON
88
100
eventJson, err:= cdevents.AsJsonString(event)
89
-
if err != nil {
90
-
log.Fatalf("failed to marshal the CDEvent, %v", err)
91
-
}
92
-
// Print the event
101
+
examples.PanicOnError(err, "failed to marshal the CDEvent")
93
102
fmt.Printf("%s", eventJson)
94
103
```
95
104
@@ -123,10 +132,11 @@ if result := c.Send(ctx, *ce); cloudevents.IsUndelivered(result) {
123
132
}
124
133
```
125
134
126
-
The whole code of is available under [`examples/custom.go`](./examples/custom.go):
135
+
The whole code of is available under [`examples/custom`](./examples/custom/main.go):
127
136
128
137
```shell
129
-
➜ go run custom.go | jq .
138
+
➜ cd examples/custom
139
+
➜ go run main.go | jq .
130
140
{
131
141
"context": {
132
142
"version": "0.4.1",
@@ -149,4 +159,75 @@ The whole code of is available under [`examples/custom.go`](./examples/custom.go
149
159
}
150
160
}
151
161
}
152
-
```
162
+
```
163
+
164
+
## Consume a CDEvent with a Custom Schema
165
+
166
+
CDEvents producers may include a `schemaUri` in their events. The extra schema **must** comply with the CDEvents schema and may add additional rules on top.
167
+
The `schemaUri` field includes the `$id` field of the custom schema and can be used for different purposes:
168
+
* specify the format of the data included in the `customData` field
169
+
* specify the format of the subject content of custom events
170
+
* refine the format of one or more fields of a specific CDEvent
171
+
172
+
In this examples, the custom schema is used to define the format of the `customData` for a `change.created` events, which corresponds to the following golang `struct`:
173
+
174
+
```golang
175
+
typeChangeDatastruct {
176
+
Userstring`json:"user"`// The user that created the PR
177
+
Assigneestring`json:"assignee,omitempty"`// The user assigned to the PR (optional)
178
+
Headstring`json:"head"`// The head commit (sha) of the PR
179
+
Basestring`json:"base"`// The base commit (sha) for the PR
180
+
}
181
+
```
182
+
183
+
The goal of this example is to consume (parse) an event with a custom schema and validate it. In the example we load the event from disk. In real life the event will be typically received over the network or extracted from a database.
Before parsing an event with a custom schema, it's required to load the schema into the SDK. This avoids having to download and compile the schema every time a message is parsed.
0 commit comments