Boomi · Schema

PackagedComponentInput

Input for creating a packaged component.

AI AgentsAutomationB2BData IntegrationEDIIntegrationsManagementMFTPlatformWorkflows

Properties

Name Type Description
componentId string ID of the component to package.
componentVersion string Version of the component to include in the package.
packageVersion string Optional version label for the package.
notes string Optional notes about this package version.
View JSON Schema on GitHub

JSON Schema

boomi-packagedcomponentinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PackagedComponentInput",
  "title": "PackagedComponentInput",
  "type": "object",
  "description": "Input for creating a packaged component.",
  "required": [
    "componentId",
    "componentVersion"
  ],
  "properties": {
    "componentId": {
      "type": "string",
      "description": "ID of the component to package."
    },
    "componentVersion": {
      "type": "string",
      "description": "Version of the component to include in the package."
    },
    "packageVersion": {
      "type": "string",
      "description": "Optional version label for the package."
    },
    "notes": {
      "type": "string",
      "description": "Optional notes about this package version."
    }
  }
}