Mentorship

EnterpriseERPFinanceHCMIntegrationPayroll

Properties

Name Type Description
id string
descriptor string
mentor object
mentee object
status string
startDate string
endDate string
View JSON Schema on GitHub

JSON Schema

workday-integration-mentorship-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Mentorship",
  "title": "Mentorship",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "descriptor": {
      "type": "string"
    },
    "mentor": {
      "$ref": "#/components/schemas/ResourceReference"
    },
    "mentee": {
      "$ref": "#/components/schemas/ResourceReference"
    },
    "status": {
      "type": "string"
    },
    "startDate": {
      "type": "string",
      "format": "date"
    },
    "endDate": {
      "type": "string",
      "format": "date"
    }
  }
}