Apache Ignite · JSON Structure

Rest Api Transaction Structure

Rest representation of transaction.

Type: object Properties: 6 Required: 6
CachingCompute GridDistributed DatabaseIn-MemoryOpen SourceSQL

Transaction is a JSON Structure definition published by Apache Ignite, describing 6 properties, of which 6 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id node state type priority startTime

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "type": "object",
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-ignite/refs/heads/main/json-structure/rest-api-transaction-structure.json",
  "name": "Transaction",
  "description": "Rest representation of transaction.",
  "properties": {
    "id": {
      "type": "uuid",
      "description": "Transaction ID."
    },
    "node": {
      "type": "string",
      "description": "Coordinator node."
    },
    "state": {
      "type": "string",
      "description": "State."
    },
    "type": {
      "type": "string",
      "description": "Type."
    },
    "priority": {
      "type": "string",
      "description": "Priority."
    },
    "startTime": {
      "type": "datetime",
      "description": "Start time."
    }
  },
  "required": [
    "id",
    "node",
    "priority",
    "startTime",
    "state",
    "type"
  ]
}