Boomi · Schema

RepositoryInput

Input for creating a DataHub repository.

AI AgentsAutomationB2BData IntegrationEDIIntegrationsManagementMFTPlatformWorkflows

Properties

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

JSON Schema

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