Boomi · Schema

Environment

A Boomi runtime environment where Atoms are assigned and processes are deployed.

AI AgentsAutomationB2BData IntegrationEDIIntegrationsManagementMFTPlatformWorkflows

Properties

Name Type Description
id string Unique identifier of the environment.
name string Display name of the environment.
classification string Environment classification.
createdDate string Timestamp when the environment was created.
View JSON Schema on GitHub

JSON Schema

boomi-environment-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Environment",
  "title": "Environment",
  "type": "object",
  "description": "A Boomi runtime environment where Atoms are assigned and processes are deployed.",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier of the environment."
    },
    "name": {
      "type": "string",
      "description": "Display name of the environment."
    },
    "classification": {
      "type": "string",
      "description": "Environment classification.",
      "enum": [
        "PRODUCTION",
        "TEST"
      ]
    },
    "createdDate": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the environment was created."
    }
  }
}