TimeClockEvent

EnterpriseERPFinanceHCMIntegrationPayroll

Properties

Name Type Description
id string
descriptor string
worker object
eventType string
eventDateTime string
timeZone string
View JSON Schema on GitHub

JSON Schema

workday-integration-timeclockevent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TimeClockEvent",
  "title": "TimeClockEvent",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "descriptor": {
      "type": "string"
    },
    "worker": {
      "$ref": "#/components/schemas/ResourceReference"
    },
    "eventType": {
      "type": "string",
      "enum": [
        "Clock_In",
        "Clock_Out"
      ]
    },
    "eventDateTime": {
      "type": "string",
      "format": "date-time"
    },
    "timeZone": {
      "type": "string"
    }
  }
}