Workday Studio · Schema

JobPostingsResponse

CloudDevelopmentEnterpriseFinanceHRIDEIntegration

Properties

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

JSON Schema

workday-studio-jobpostingsresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/JobPostingsResponse",
  "title": "JobPostingsResponse",
  "type": "object",
  "properties": {
    "total": {
      "type": "integer"
    },
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "descriptor": {
            "type": "string"
          },
          "title": {
            "type": "string"
          },
          "status": {
            "type": "string"
          },
          "postingDate": {
            "type": "string",
            "format": "date"
          },
          "location": {
            "$ref": "#/components/schemas/ResourceReference"
          }
        }
      }
    }
  }
}