Workday Studio · Schema

IntegrationTemplate

An integration template providing a starting point for building new integrations, including core connectors and document transformation templates.

CloudDevelopmentEnterpriseFinanceHRIDEIntegration

Properties

Name Type Description
id string The unique Workday identifier for the template
descriptor string The display name of the template
templateName string The configured name of the template
category string The category of the template
supportedServices array The Workday services supported by this template
View JSON Schema on GitHub

JSON Schema

workday-studio-integrationtemplate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IntegrationTemplate",
  "title": "IntegrationTemplate",
  "type": "object",
  "description": "An integration template providing a starting point for building new integrations, including core connectors and document transformation templates.",
  "properties": {
    "id": {
      "type": "string",
      "description": "The unique Workday identifier for the template"
    },
    "descriptor": {
      "type": "string",
      "description": "The display name of the template"
    },
    "templateName": {
      "type": "string",
      "description": "The configured name of the template"
    },
    "category": {
      "type": "string",
      "description": "The category of the template",
      "enum": [
        "Core_Connector",
        "Document_Transformation",
        "Studio",
        "Cloud_Connect"
      ]
    },
    "supportedServices": {
      "type": "array",
      "description": "The Workday services supported by this template",
      "items": {
        "$ref": "#/components/schemas/ResourceReference"
      }
    }
  }
}