TimeBlock

EnterpriseERPFinanceHCMIntegrationPayroll

Properties

Name Type Description
id string
descriptor string
worker object
date string
startTime string
endTime string
totalHours number
timeCode object
View JSON Schema on GitHub

JSON Schema

workday-integration-timeblock-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TimeBlock",
  "title": "TimeBlock",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "descriptor": {
      "type": "string"
    },
    "worker": {
      "$ref": "#/components/schemas/ResourceReference"
    },
    "date": {
      "type": "string",
      "format": "date"
    },
    "startTime": {
      "type": "string",
      "format": "date-time"
    },
    "endTime": {
      "type": "string",
      "format": "date-time"
    },
    "totalHours": {
      "type": "number"
    },
    "timeCode": {
      "$ref": "#/components/schemas/ResourceReference"
    }
  }
}