Ditto · Schema

WriteResponse

Response containing results of executing a write transaction

Developer ToolsDatabaseSynchronizationPeer-to-PeerEdge ComputingOffline-FirstMobile

Properties

Name Type Description
results array Array of results for each write command executed in the transaction
View JSON Schema on GitHub

JSON Schema

ditto-live-writeresponse-schema.json Raw ↑
{
  "type": "object",
  "description": "Response containing results of executing a write transaction",
  "required": [
    "results"
  ],
  "properties": {
    "results": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/WriteCommandResult"
      },
      "description": "Array of results for each write command executed in the transaction"
    }
  },
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "WriteResponse"
}