Boomi · Schema

Atom

A Boomi Atom — the lightweight runtime engine that executes integration processes.

AI AgentsAutomationB2BData IntegrationEDIIntegrationsManagementMFTPlatformWorkflows

Properties

Name Type Description
id string Unique identifier of the Atom.
name string Display name of the Atom.
status string Current online/offline status of the Atom.
type string Atom type.
hostName string Hostname of the machine running the Atom.
currentVersion string Current Boomi runtime version installed on the Atom.
dateInstalled string Timestamp when the Atom was installed.
View JSON Schema on GitHub

JSON Schema

boomi-atom-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Atom",
  "title": "Atom",
  "type": "object",
  "description": "A Boomi Atom \u2014 the lightweight runtime engine that executes integration processes.",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier of the Atom."
    },
    "name": {
      "type": "string",
      "description": "Display name of the Atom."
    },
    "status": {
      "type": "string",
      "description": "Current online/offline status of the Atom.",
      "enum": [
        "ONLINE",
        "OFFLINE",
        "UNKNOWN"
      ]
    },
    "type": {
      "type": "string",
      "description": "Atom type.",
      "enum": [
        "ATOM",
        "MOLECULE",
        "CLOUD"
      ]
    },
    "hostName": {
      "type": "string",
      "description": "Hostname of the machine running the Atom."
    },
    "currentVersion": {
      "type": "string",
      "description": "Current Boomi runtime version installed on the Atom."
    },
    "dateInstalled": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the Atom was installed."
    }
  }
}