Boomi · Schema

Source

A data source that contributes records to the master data hub.

AI AgentsAutomationB2BData IntegrationEDIIntegrationsManagementMFTPlatformWorkflows

Properties

Name Type Description
id string Unique identifier of the source.
name string Display name of the source.
description string Human-readable description of the source system.
createdDate string Timestamp when the source was created.
View JSON Schema on GitHub

JSON Schema

boomi-source-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Source",
  "title": "Source",
  "type": "object",
  "description": "A data source that contributes records to the master data hub.",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier of the source."
    },
    "name": {
      "type": "string",
      "description": "Display name of the source."
    },
    "description": {
      "type": "string",
      "description": "Human-readable description of the source system."
    },
    "createdDate": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the source was created."
    }
  }
}