{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-neptune/refs/heads/main/json-schema/streams-property-graph-stream-record-schema.json", "title": "PropertyGraphStreamRecord", "description": "PropertyGraphStreamRecord schema from Neptune", "type": "object", "properties": { "commitTimestamp": { "type": "integer", "description": "Unix epoch timestamp in milliseconds of the transaction commit." }, "eventId": { "$ref": "#/components/schemas/StreamEventId" }, "data": { "$ref": "#/components/schemas/PropertyGraphData" }, "op": { "type": "string", "enum": [ "ADD", "REMOVE" ], "description": "The operation type (ADD or REMOVE)." }, "isLastOp": { "type": "boolean", "description": "True only if this is the last operation in the transaction." } } }