Amazon Neptune · Schema

PropertygraphStreamOutput

PropertygraphStreamOutput schema from Neptune

DatabaseGraph DatabaseGremlinNeptuneProperty GraphRDFSPARQL

Properties

Name Type Description
lastEventId object
lastTrxTimestampInMillis integer Timestamp of the last transaction in milliseconds.
format string
records array
totalRecords integer
View JSON Schema on GitHub

JSON Schema

data-propertygraph-stream-output-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-neptune/refs/heads/main/json-schema/data-propertygraph-stream-output-schema.json",
  "title": "PropertygraphStreamOutput",
  "description": "PropertygraphStreamOutput schema from Neptune",
  "type": "object",
  "properties": {
    "lastEventId": {
      "type": "object",
      "properties": {
        "commitNum": {
          "type": "integer"
        },
        "opNum": {
          "type": "integer"
        }
      }
    },
    "lastTrxTimestampInMillis": {
      "type": "integer",
      "description": "Timestamp of the last transaction in milliseconds."
    },
    "format": {
      "type": "string",
      "enum": [
        "PG_JSON"
      ]
    },
    "records": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/PropertygraphStreamRecord"
      }
    },
    "totalRecords": {
      "type": "integer"
    }
  }
}