Skip to content
Developer Preview

RecordPosition

One end of a [SourceRange]: a record’s event id and its sequence number within the stream.

  • id
  • sequence
Source

schema/msp/experimental/msp.schema.json#/types/RecordPosition

{
"description": "One end of a [`SourceRange`]: a record's event id and its sequence number\nwithin the stream.",
"properties": {
"id": {
"description": "The record's event id.",
"type": "string"
},
"sequence": {
"description": "The record's sequence number within its stream.",
"type": "integer"
}
},
"required": [
"id",
"sequence"
],
"type": "object"
}