Workday Studio · Schema

WorkersResponse

CloudDevelopmentEnterpriseFinanceHRIDEIntegration

Properties

Name Type Description
total integer Total number of workers matching the criteria
data array
View JSON Schema on GitHub

JSON Schema

workday-studio-workersresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WorkersResponse",
  "title": "WorkersResponse",
  "type": "object",
  "properties": {
    "total": {
      "type": "integer",
      "description": "Total number of workers matching the criteria"
    },
    "data": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Worker"
      }
    }
  }
}