Course

EnterpriseERPFinanceHCMIntegrationPayroll

Properties

Name Type Description
id string
descriptor string
title string
description string
courseType object
duration string
isActive boolean
View JSON Schema on GitHub

JSON Schema

workday-integration-course-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Course",
  "title": "Course",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "descriptor": {
      "type": "string"
    },
    "title": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "courseType": {
      "$ref": "#/components/schemas/ResourceReference"
    },
    "duration": {
      "type": "string"
    },
    "isActive": {
      "type": "boolean"
    }
  }
}