Boomi · Schema

DeployedPackage

A packaged component deployed to a specific runtime environment.

AI AgentsAutomationB2BData IntegrationEDIIntegrationsManagementMFTPlatformWorkflows

Properties

Name Type Description
deploymentId string Unique identifier of the deployment.
environmentId string ID of the environment to which the package is deployed.
packageId string ID of the deployed packaged component.
componentId string ID of the underlying component.
componentType string Type of the deployed component.
deployedDate string Timestamp when the package was deployed.
active boolean Whether this deployment is currently active.
View JSON Schema on GitHub

JSON Schema

boomi-deployedpackage-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DeployedPackage",
  "title": "DeployedPackage",
  "type": "object",
  "description": "A packaged component deployed to a specific runtime environment.",
  "properties": {
    "deploymentId": {
      "type": "string",
      "description": "Unique identifier of the deployment."
    },
    "environmentId": {
      "type": "string",
      "description": "ID of the environment to which the package is deployed."
    },
    "packageId": {
      "type": "string",
      "description": "ID of the deployed packaged component."
    },
    "componentId": {
      "type": "string",
      "description": "ID of the underlying component."
    },
    "componentType": {
      "type": "string",
      "description": "Type of the deployed component."
    },
    "deployedDate": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the package was deployed."
    },
    "active": {
      "type": "boolean",
      "description": "Whether this deployment is currently active."
    }
  }
}