{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "OwnershipEvent", "type": "object", "properties": { "ownershipId": { "$ref": "#/components/schemas/OwnershipId" }, "eventId": { "type": "string" }, "eventTimeMarks": { "$ref": "#/components/schemas/EventTimeMarks" } }, "required": [ "ownershipId", "eventId" ], "oneOf": [ { "$ref": "#/components/schemas/OwnershipUpdateEvent" }, { "$ref": "#/components/schemas/OwnershipDeleteEvent" } ] }