Skip to content
Developer Preview

ItemUpdatedParams

item/updated params: an open item changed non-terminally in a way deltas cannot express — the full item re-emitted at a higher revision (apply rule: replace iff higher).

  • item
  • sessionId
  • sourceRange
  • viewCursor
Source

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

{
"description": "`item/updated` params: an open item changed non-terminally\nin a way deltas cannot express — the full item re-emitted at a higher\nrevision (apply rule: replace iff higher).",
"properties": {
"item": {
"$ref": "#/$defs/Item",
"description": "The full item at a higher revision."
},
"sessionId": {
"description": "The owning session.",
"type": "string"
},
"sourceRange": {
"$ref": "#/$defs/SourceRange",
"description": "The durable records this event folded from."
},
"viewCursor": {
"description": "Opaque, strictly monotonic view cursor.",
"type": "string"
}
},
"required": [
"item",
"sessionId",
"sourceRange",
"viewCursor"
],
"type": "object"
}