Ceramic · Schema

Ceramic Event feed data

Ceramic event keys as part of a Ceramic Stream

DecentralizedWeb3Data StreamsDIDIPFSBlockchainEvent StreamingComposeDB

Properties

Name Type Description
events array An array of events. For now, the event data payload is empty.
resumeToken string The token/highwater mark to used as resumeAt on a future request
View JSON Schema on GitHub

JSON Schema

EventFeed.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/ceramic/main/json-schema/EventFeed.json",
  "title": "Ceramic Event feed data",
  "description": "Ceramic event keys as part of a Ceramic Stream",
  "type": "object",
  "required": ["events", "resumeToken"],
  "properties": {
    "events": {
      "type": "array",
      "description": "An array of events. For now, the event data payload is empty.",
      "items": {
        "$ref": "Event.json"
      }
    },
    "resumeToken": {
      "type": "string",
      "description": "The token/highwater mark to used as resumeAt on a future request"
    }
  }
}