Workday Extend · Schema

AppCreate

AutomationCustom ApplicationsEnterpriseExtensionsHCMHuman Capital ManagementIntegrationOrchestrationPaaS

Properties

Name Type Description
name string The name of the Extend application
description string Description of the application
category string The application category
View JSON Schema on GitHub

JSON Schema

workday-extend-appcreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AppCreate",
  "title": "AppCreate",
  "type": "object",
  "required": [
    "name",
    "description"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "The name of the Extend application",
      "maxLength": 255
    },
    "description": {
      "type": "string",
      "description": "Description of the application"
    },
    "category": {
      "type": "string",
      "description": "The application category"
    }
  }
}