Boomi · Schema

ModelInput

Input for creating or updating a data model.

AI AgentsAutomationB2BData IntegrationEDIIntegrationsManagementMFTPlatformWorkflows

Properties

Name Type Description
name string Display name for the model.
fields array Field definitions for the model schema.
View JSON Schema on GitHub

JSON Schema

boomi-modelinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ModelInput",
  "title": "ModelInput",
  "type": "object",
  "description": "Input for creating or updating a data model.",
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Display name for the model."
    },
    "fields": {
      "type": "array",
      "description": "Field definitions for the model schema.",
      "items": {
        "$ref": "#/components/schemas/ModelField"
      }
    }
  }
}