{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "ItemEvent", "type": "object", "properties": { "itemId": { "$ref": "#/components/schemas/ItemId" }, "eventId": { "type": "string" }, "eventTimeMarks": { "$ref": "#/components/schemas/EventTimeMarks" } }, "required": [ "eventId", "itemId" ], "oneOf": [ { "$ref": "#/components/schemas/ItemUpdateEvent" }, { "$ref": "#/components/schemas/ItemDeleteEvent" } ] }