Apache ServiceMix · JSON Structure

Apache Servicemix Route Structure

Apache Camel route

Type: object Properties: 7
Enterprise IntegrationESBIntegrationMessagingOSGiApacheOpen Source

Route is a JSON Structure definition published by Apache ServiceMix, describing 7 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id description status uptime exchangesTotal exchangesFailed meanProcessingTime

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

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-servicemix/refs/heads/main/json-structure/apache-servicemix-route-structure.json",
  "description": "Apache Camel route",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Route identifier"
    },
    "description": {
      "type": "string",
      "description": "Route description"
    },
    "status": {
      "type": "string",
      "enum": [
        "Started",
        "Stopped",
        "Suspended"
      ],
      "description": "Route status"
    },
    "uptime": {
      "type": "string",
      "description": "Route uptime"
    },
    "exchangesTotal": {
      "type": "int64",
      "description": "Total exchanges processed"
    },
    "exchangesFailed": {
      "type": "int64",
      "description": "Failed exchanges count"
    },
    "meanProcessingTime": {
      "type": "int32",
      "description": "Mean processing time in milliseconds"
    }
  },
  "name": "Route"
}