ExperienceRequest

EnterpriseERPFinanceHCMIntegrationPayroll

Properties

Name Type Description
company string
title string
startDate string
endDate string
description string
View JSON Schema on GitHub

JSON Schema

workday-integration-experiencerequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ExperienceRequest",
  "title": "ExperienceRequest",
  "type": "object",
  "required": [
    "company",
    "title",
    "startDate"
  ],
  "properties": {
    "company": {
      "type": "string"
    },
    "title": {
      "type": "string"
    },
    "startDate": {
      "type": "string",
      "format": "date"
    },
    "endDate": {
      "type": "string",
      "format": "date"
    },
    "description": {
      "type": "string"
    }
  }
}