...
1{
2 "$ref": "#/definitions/event",
3 "definitions": {
4 "specversion": {
5 "type": "string"
6 },
7 "contenttype": {
8 "type": "string"
9 },
10 "event": {
11 "properties": {
12 "specversion": {
13 "$ref": "#/definitions/specversion"
14 },
15 "contenttype": {
16 "$ref": "#/definitions/contenttype"
17 },
18 "id": {
19 "$ref": "#/definitions/id"
20 },
21 "time": {
22 "$ref": "#/definitions/time"
23 },
24 "type": {
25 "$ref": "#/definitions/type"
26 },
27 "extensions": {
28 "$ref": "#/definitions/extensions"
29 },
30 "source": {
31 "$ref": "#/definitions/source"
32 },
33 "shkeptncontext": {
34 "type": "string"
35 }
36 },
37 "required": [
38 "specversion",
39 "id",
40 "type",
41 "source"
42 ],
43 "type": "object"
44 },
45 "id": {
46 "type": "string"
47 },
48 "time": {
49 "format": "date-time",
50 "type": "string"
51 },
52 "type": {
53 "type": "string"
54 },
55 "extensions": {
56 "type": "object"
57 },
58 "source": {
59 "format": "uri-reference",
60 "type": "string"
61 }
62 },
63 "type": "object"
64 }
View as plain text