{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://raw.githubusercontent.com/api-evangelist/ceramic/main/json-schema/Event.json", "title": "A Ceramic Event", "description": "A Ceramic event as part of a Ceramic Stream. Contains both the root CID used to identify the Event as well as the Event payload data.", "type": "object", "required": ["id"], "properties": { "id": { "type": "string", "description": "Multibase encoding of event root CID bytes." }, "data": { "type": "string", "description": "Multibase encoding of event data." } } }