Apache ServiceMix · Schema

BundleStateRequest

Request to update bundle state

Enterprise IntegrationESBIntegrationMessagingOSGiApacheOpen Source

Properties

Name Type Description
state string Target state action
View JSON Schema on GitHub

JSON Schema

apache-servicemix-bundle-state-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-servicemix/refs/heads/main/json-schema/apache-servicemix-bundle-state-request-schema.json",
  "title": "BundleStateRequest",
  "description": "Request to update bundle state",
  "type": "object",
  "properties": {
    "state": {
      "type": "string",
      "enum": [
        "start",
        "stop",
        "restart",
        "refresh",
        "update"
      ],
      "description": "Target state action"
    }
  }
}