Amazon Neptune · Schema
SparqlStreamResponse
SparqlStreamResponse schema from Neptune
DatabaseGraph DatabaseGremlinNeptuneProperty GraphRDFSPARQL
Properties
| Name | Type | Description |
|---|---|---|
| lastEventId | object | |
| lastTrxTimestamp | integer | Unix epoch timestamp in milliseconds of the last commit. |
| format | string | The serialization format (always NQUADS for RDF). |
| records | array | The array of change-log stream records. |
| totalRecords | integer | Total number of records in the response. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-neptune/refs/heads/main/json-schema/streams-sparql-stream-response-schema.json",
"title": "SparqlStreamResponse",
"description": "SparqlStreamResponse schema from Neptune",
"type": "object",
"properties": {
"lastEventId": {
"$ref": "#/components/schemas/StreamEventId"
},
"lastTrxTimestamp": {
"type": "integer",
"description": "Unix epoch timestamp in milliseconds of the last commit."
},
"format": {
"type": "string",
"enum": [
"NQUADS"
],
"description": "The serialization format (always NQUADS for RDF)."
},
"records": {
"type": "array",
"description": "The array of change-log stream records.",
"items": {
"$ref": "#/components/schemas/SparqlStreamRecord"
}
},
"totalRecords": {
"type": "integer",
"description": "Total number of records in the response."
}
}
}