TimeValidationsResponse

EnterpriseERPFinanceHCMIntegrationPayroll

Properties

Name Type Description
total integer
data array
View JSON Schema on GitHub

JSON Schema

workday-integration-timevalidationsresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TimeValidationsResponse",
  "title": "TimeValidationsResponse",
  "type": "object",
  "properties": {
    "total": {
      "type": "integer"
    },
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "descriptor": {
            "type": "string"
          },
          "worker": {
            "$ref": "#/components/schemas/ResourceReference"
          },
          "severity": {
            "type": "string",
            "enum": [
              "Error",
              "Warning"
            ]
          },
          "message": {
            "type": "string"
          },
          "date": {
            "type": "string",
            "format": "date"
          }
        }
      }
    }
  }
}