Boomi · Schema

DeployedPackageInput

Input for deploying a packaged component to an environment.

AI AgentsAutomationB2BData IntegrationEDIIntegrationsManagementMFTPlatformWorkflows

Properties

Name Type Description
environmentId string ID of the target environment.
packageId string ID of the packaged component to deploy.
notes string Optional deployment notes.
View JSON Schema on GitHub

JSON Schema

boomi-deployedpackageinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DeployedPackageInput",
  "title": "DeployedPackageInput",
  "type": "object",
  "description": "Input for deploying a packaged component to an environment.",
  "required": [
    "environmentId",
    "packageId"
  ],
  "properties": {
    "environmentId": {
      "type": "string",
      "description": "ID of the target environment."
    },
    "packageId": {
      "type": "string",
      "description": "ID of the packaged component to deploy."
    },
    "notes": {
      "type": "string",
      "description": "Optional deployment notes."
    }
  }
}