Amazon Neptune · Schema

StreamEventId

A sequence identifier for a stream event.

DatabaseGraph DatabaseGremlinNeptuneProperty GraphRDFSPARQL

Properties

Name Type Description
commitNum integer The commit (transaction) number.
opNum integer The operation number within the commit.
View JSON Schema on GitHub

JSON Schema

amazon-neptune-streameventid-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StreamEventId",
  "title": "StreamEventId",
  "type": "object",
  "description": "A sequence identifier for a stream event.",
  "properties": {
    "commitNum": {
      "type": "integer",
      "description": "The commit (transaction) number."
    },
    "opNum": {
      "type": "integer",
      "description": "The operation number within the commit."
    }
  }
}