Ceramic · Schema

A Ceramic Event

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.

DecentralizedWeb3Data StreamsDIDIPFSBlockchainEvent StreamingComposeDB

Properties

Name Type Description
id string Multibase encoding of event root CID bytes.
data string Multibase encoding of event data.
View JSON Schema on GitHub

JSON Schema

Event.json Raw ↑
{
  "$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."
    }
  }
}