Position

Represents a staffing position within the Workday system, defining a role within an organization that can be filled by a worker.

EnterpriseERPFinanceHCMIntegrationPayroll

Properties

Name Type Description
id string The unique Workday identifier for the position
descriptor string The display name of the position
positionID string The position reference ID
jobProfile object The job profile associated with this position
supervisoryOrganization object The supervisory organization this position belongs to
location object The work location of the position
isFilled boolean Whether the position is currently filled by a worker
worker object The worker currently filling this position
availableDate stringnull The date the position becomes available
earliestHireDate stringnull The earliest date a hire can be made for this position
timeType object The time type (Full Time, Part Time) for the position
workerType object The worker type (Employee, Contingent Worker) for the position
View JSON Schema on GitHub

JSON Schema

workday-integration-position-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://schemas.workday.com/position",
  "title": "Position",
  "description": "Represents a staffing position within the Workday system, defining a role within an organization that can be filled by a worker.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "The unique Workday identifier for the position"
    },
    "descriptor": {
      "type": "string",
      "description": "The display name of the position"
    },
    "positionID": {
      "type": "string",
      "description": "The position reference ID"
    },
    "jobProfile": {
      "$ref": "#/$defs/ResourceReference",
      "description": "The job profile associated with this position"
    },
    "supervisoryOrganization": {
      "$ref": "#/$defs/ResourceReference",
      "description": "The supervisory organization this position belongs to"
    },
    "location": {
      "$ref": "#/$defs/ResourceReference",
      "description": "The work location of the position"
    },
    "isFilled": {
      "type": "boolean",
      "description": "Whether the position is currently filled by a worker"
    },
    "worker": {
      "$ref": "#/$defs/ResourceReference",
      "description": "The worker currently filling this position"
    },
    "availableDate": {
      "type": ["string", "null"],
      "format": "date",
      "description": "The date the position becomes available"
    },
    "earliestHireDate": {
      "type": ["string", "null"],
      "format": "date",
      "description": "The earliest date a hire can be made for this position"
    },
    "timeType": {
      "$ref": "#/$defs/ResourceReference",
      "description": "The time type (Full Time, Part Time) for the position"
    },
    "workerType": {
      "$ref": "#/$defs/ResourceReference",
      "description": "The worker type (Employee, Contingent Worker) for the position"
    }
  },
  "required": ["id", "descriptor"],
  "$defs": {
    "ResourceReference": {
      "type": "object",
      "properties": {
        "id": {
          "type": "string"
        },
        "descriptor": {
          "type": "string"
        },
        "href": {
          "type": "string",
          "format": "uri"
        }
      },
      "required": ["id"]
    }
  }
}