Workday Extend · Schema

AppConfiguration

AutomationCustom ApplicationsEnterpriseExtensionsHCMHuman Capital ManagementIntegrationOrchestrationPaaS

Properties

Name Type Description
id string Configuration identifier
key string Configuration setting key
value string Configuration setting value
description string Description of the configuration setting
dataType string Data type of the configuration value
isSecret boolean Whether the value is stored as a secret
View JSON Schema on GitHub

JSON Schema

workday-extend-appconfiguration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AppConfiguration",
  "title": "AppConfiguration",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Configuration identifier"
    },
    "key": {
      "type": "string",
      "description": "Configuration setting key"
    },
    "value": {
      "type": "string",
      "description": "Configuration setting value"
    },
    "description": {
      "type": "string",
      "description": "Description of the configuration setting"
    },
    "dataType": {
      "type": "string",
      "enum": [
        "string",
        "number",
        "boolean",
        "json"
      ],
      "description": "Data type of the configuration value"
    },
    "isSecret": {
      "type": "boolean",
      "description": "Whether the value is stored as a secret"
    }
  }
}