Workday Studio · Schema

AssemblyComponent

A configurable component within a Studio assembly, such as a mediation step, XSLT transformation, connector, or flow control element.

CloudDevelopmentEnterpriseFinanceHRIDEIntegration

Properties

Name Type Description
id string The unique identifier of the component within the assembly
componentType string The type of assembly component
name string The configured name of the component
description string A description of the component purpose
View JSON Schema on GitHub

JSON Schema

workday-studio-assemblycomponent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AssemblyComponent",
  "title": "AssemblyComponent",
  "type": "object",
  "description": "A configurable component within a Studio assembly, such as a mediation step, XSLT transformation, connector, or flow control element.",
  "properties": {
    "id": {
      "type": "string",
      "description": "The unique identifier of the component within the assembly"
    },
    "componentType": {
      "type": "string",
      "description": "The type of assembly component",
      "enum": [
        "Mediation",
        "Transformation",
        "Connector",
        "FlowControl",
        "ErrorHandler",
        "Script",
        "Variable"
      ]
    },
    "name": {
      "type": "string",
      "description": "The configured name of the component"
    },
    "description": {
      "type": "string",
      "description": "A description of the component purpose"
    }
  }
}