Boomi · Schema

Repository

A DataHub repository that organizes master data domains and models.

AI AgentsAutomationB2BData IntegrationEDIIntegrationsManagementMFTPlatformWorkflows

Properties

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

JSON Schema

boomi-repository-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Repository",
  "title": "Repository",
  "type": "object",
  "description": "A DataHub repository that organizes master data domains and models.",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier of the repository."
    },
    "name": {
      "type": "string",
      "description": "Display name of the repository."
    },
    "description": {
      "type": "string",
      "description": "Human-readable description of the repository's purpose."
    },
    "createdDate": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the repository was created."
    }
  }
}