fauna · Schema

EventFeedResponse

Properties

Name Type Description
events array Array of change events for the current page.
cursor string Cursor to use for fetching the next page of events.
has_next boolean Indicates whether more pages of events are available.
stats object
View JSON Schema on GitHub

JSON Schema

fauna-eventfeedresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EventFeedResponse",
  "title": "EventFeedResponse",
  "type": "object",
  "properties": {
    "events": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Event"
      },
      "description": "Array of change events for the current page."
    },
    "cursor": {
      "type": "string",
      "description": "Cursor to use for fetching the next page of events."
    },
    "has_next": {
      "type": "boolean",
      "description": "Indicates whether more pages of events are available."
    },
    "stats": {
      "$ref": "#/components/schemas/EventStats"
    }
  }
}