Workday · Schema

Mentorship

Cloud ComputingEnterprise SoftwareFinancial ManagementHCMSaaS

Properties

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

JSON Schema

workday-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",
      "example": "abc123"
    },
    "descriptor": {
      "type": "string",
      "example": "example_value"
    },
    "mentor": {
      "$ref": "#/components/schemas/ResourceReference"
    },
    "mentee": {
      "$ref": "#/components/schemas/ResourceReference"
    },
    "mentorshipType": {
      "$ref": "#/components/schemas/ResourceReference"
    },
    "startDate": {
      "type": "string",
      "format": "date",
      "example": "2026-01-15"
    },
    "endDate": {
      "type": "string",
      "format": "date",
      "example": "2026-01-15"
    },
    "status": {
      "type": "string",
      "example": "example_value"
    }
  }
}