PerformanceReviewsResponse

EnterpriseERPFinanceHCMIntegrationPayroll

Properties

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

JSON Schema

workday-integration-performancereviewsresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PerformanceReviewsResponse",
  "title": "PerformanceReviewsResponse",
  "type": "object",
  "properties": {
    "total": {
      "type": "integer"
    },
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "descriptor": {
            "type": "string"
          },
          "reviewPeriod": {
            "type": "string"
          },
          "overallRating": {
            "type": "string"
          },
          "manager": {
            "$ref": "#/components/schemas/ResourceReference"
          },
          "completionDate": {
            "type": "string",
            "format": "date"
          }
        }
      }
    }
  }
}