Workday Extend · Schema

AppDeploymentCreate

AutomationCustom ApplicationsEnterpriseExtensionsHCMHuman Capital ManagementIntegrationOrchestrationPaaS

Properties

Name Type Description
versionId string The ID of the application version to deploy
environment string Target deployment environment
View JSON Schema on GitHub

JSON Schema

workday-extend-appdeploymentcreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AppDeploymentCreate",
  "title": "AppDeploymentCreate",
  "type": "object",
  "required": [
    "versionId"
  ],
  "properties": {
    "versionId": {
      "type": "string",
      "description": "The ID of the application version to deploy"
    },
    "environment": {
      "type": "string",
      "enum": [
        "sandbox",
        "production"
      ],
      "description": "Target deployment environment"
    }
  }
}