Boomi · Schema

SourceInput

Input for creating a data source.

AI AgentsAutomationB2BData IntegrationEDIIntegrationsManagementMFTPlatformWorkflows

Properties

Name Type Description
name string Display name for the source.
description string Optional description of the source system.
View JSON Schema on GitHub

JSON Schema

boomi-sourceinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SourceInput",
  "title": "SourceInput",
  "type": "object",
  "description": "Input for creating a data source.",
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Display name for the source."
    },
    "description": {
      "type": "string",
      "description": "Optional description of the source system."
    }
  }
}