schemas
INSTANCE_MODEL_REFERENCE
{
"required": [
"id"
],
"type": "object",
"properties": {
"id": {
"pattern": "^(([0-9a-f]{32})|(\\S+=\\S+))$",
"type": "string",
"description": "Workday Id or Reference Id of the instance."
},
"descriptor": {
"type": "string",
"description": "The display name of the instance",
"readOnly": true
},
"href": {
"type": "string",
"description": "A link to the instance",
"readOnly": true
}
}
}
ERROR_MODEL_REFERENCE
{
"required": [
"error"
],
"type": "object",
"properties": {
"error": {
"type": "string",
"description": "A description of the error"
},
"code": {
"type": "string",
"description": "The code that corresponds to the error message. Use the error code to drive programmatic error-handling behavior. Don't use error message strings for this purpose because they are subject to change"
},
"field": {
"type": "string",
"description": "The field related to the error"
},
"path": {
"type": "string",
"description": "The path of the field related to the error"
},
"severity": {
"type": "string",
"description": "Severity of the validation (e.g. Critical, Warning)."
},
"internalMessage": {
"type": "string",
"description": "Internal message providing additional context for the validation (e.g. representation content validation details)."
}
}
}
VALIDATION_ERROR_MODEL_REFERENCE
{
"allOf": [
{
"required": [
"error"
],
"type": "object",
"properties": {
"error": {
"type": "string",
"description": "A description of the error"
},
"errors": {
"type": "array",
"description": "An array of validation errors",
"items": {
"$ref": "#/components/schemas/ERROR_MODEL_REFERENCE"
}
}
}
}
]
}
FACETS_MODEL_REFERENCE
{
"type": "array",
"items": {
"type": "object",
"properties": {
"descriptor": {
"type": "string",
"description": "A description of the facet"
},
"facetParameter": {
"type": "string",
"description": "The alias used to select the facet"
},
"values": {
"type": "array",
"description": "the facet values",
"items": {
"required": [
"id"
],
"type": "object",
"properties": {
"count": {
"type": "integer",
"description": "The number of instances returned by this facet",
"format": "int32"
},
"id": {
"pattern": "^(([0-9a-f]{32})|(\\S+=\\S+))$",
"type": "string",
"description": "Workday Id or Reference Id of the instance."
},
"descriptor": {
"type": "string",
"description": "A description of the facet"
},
"href": {
"type": "string",
"description": "A link to the instance",
"readOnly": true
}
}
}
}
},
"description": "This object represents the possible facets for this resource",
"readOnly": true
}
}
MULTIPLE_INSTANCE_MODEL_REFERENCE
{
"type": "object",
"properties": {
"total": {
"type": "integer",
"format": "int32"
},
"data": {
"type": "array",
"items": {
"$ref": "#/components/schemas/INSTANCE_MODEL_REFERENCE"
}
}
}
}
cascadedGoals_ba82b737ea3710001e5fdcdb0c6b0000
{
"allOf": [
{
"$ref": "#/components/schemas/cascadeGoalDetails_4fe10913736c10003773be6f2cce0000"
},
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The id for Cascaded Goal (Derived)"
}
}
}
]
}
employees_4fe10913736c10001540c0de73ca0000
{
"allOf": [
{
"$ref": "#/components/schemas/workerDetails_4fe10913736c10001f8a261052450000"
},
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The id for Worker Representation"
}
}
}
]
}
organizations_4fe10913736c10001540c0de73ca0001
{
"allOf": [
{
"$ref": "#/components/schemas/organizationDetails_4fe10913736c100026bf8b1db5a80000"
},
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The id for Organization Representation"
}
}
}
]
}
talentPool_4fe10913736c10001540c0de73ca0002
{
"description": "Talent Pool for the Cascaded Goal Event",
"allOf": [
{
"$ref": "#/components/schemas/INSTANCE_MODEL_REFERENCE"
},
{
"type": "object"
}
]
}
workerForActionEvent_97401c1e0ffa100007b412bcc84e0000
{
"description": "The worker associated with the Cascaded Goal Event",
"allOf": [
{
"$ref": "#/components/schemas/INSTANCE_MODEL_REFERENCE"
},
{
"type": "object"
}
],
"x-readOnly": true
}
businessProcessParameters_4fe10913736c10003932adeb5ea20000
{
"description": "The Cascaded Goal Event instance used with the businessProcessLinkable service representations.",
"allOf": [
{
"$ref": "#/components/schemas/cascadedGoalEventBusinessProcessParameters_6c1b43568ab71000282e0c88614e0000"
},
{
"type": "object"
}
]
}
cascadedGoalEventDetails_4fe10913736c100014132b5b1a240000
{
"allOf": [
{
"type": "object",
"properties": {
"cascadedGoals": {
"type": "array",
"description": "The Cascade Goals for the Cascaded Goal Event",
"items": {
"$ref": "#/components/schemas/cascadedGoals_ba82b737ea3710001e5fdcdb0c6b0000"
},
"x-workday-type": "Multi-instance"
},
"employees": {
"type": "array",
"description": "Employees for the Cascaded Goal Event",
"items": {
"$ref": "#/components/schemas/employees_4fe10913736c10001540c0de73ca0000"
},
"x-workday-type": "Multi-instance"
},
"organizations": {
"type": "array",
"description": "Organizations for the Cascaded Goal Event",
"items": {
"$ref": "#/components/schemas/organizations_4fe10913736c10001540c0de73ca0001"
},
"x-workday-type": "Multi-instance"
},
"talentPool": {
"$ref": "#/components/schemas/talentPool_4fe10913736c10001540c0de73ca0002"
},
"includeSubordinate": {
"type": "boolean",
"description": "When set to true, it includes sub-organizations that are part of the specified Organization for the Cascaded Goal Event.",
"example": true,
"x-workday-type": "Boolean"
},
"workerForActionEvent": {
"$ref": "#/components/schemas/workerForActionEvent_97401c1e0ffa100007b412bcc84e0000"
},
"businessProcessParameters": {
"$ref": "#/components/schemas/businessProcessParameters_4fe10913736c10003932adeb5ea20000"
},
"descriptor": {
"type": "string",
"description": "The display name of the instance",
"example": "Lorem ipsum dolor sit ame"
},
"id": {
"type": "string",
"description": "The id for Cascaded Goal Event"
}
}
}
]
}
worker_8ae941fa93dc100031e2fe2c4aec0000
{
"description": "The worker whose goals are being added, edited, or removed.",
"allOf": [
{
"$ref": "#/components/schemas/INSTANCE_MODEL_REFERENCE"
},
{
"type": "object"
}
]
}
workerGoalEventDetails_8ae941fa93dc100031e2fd9281020000
{
"allOf": [
{
"required": [
"worker"
],
"type": "object",
"properties": {
"worker": {
"$ref": "#/components/schemas/worker_8ae941fa93dc100031e2fe2c4aec0000"
},
"descriptor": {
"type": "string",
"description": "The display name of the instance",
"example": "Lorem ipsum dolor sit ame"
},
"id": {
"type": "string",
"description": "The id for Worker Goal Event"
}
}
}
]
}
status_01aebcb95553100049e488759ff20001
{
"description": "The status of the goal.",
"allOf": [
{
"$ref": "#/components/schemas/INSTANCE_MODEL_REFERENCE"
},
{
"type": "object"
}
],
"x-conditionally-required": true,
"x-conditionally-hidden": true
}
category_01aebcb95553100049e488759ff20003
{
"allOf": [
{
"$ref": "#/components/schemas/goalCategory_01aebcb9555310004a268d3a3e230000"
},
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The id for Goal Category - Derived"
}
}
}
]
}
goalRepresentation_01aebcb9555310002610d1d10c7d0000
{
"allOf": [
{
"required": [
"name"
],
"type": "object",
"properties": {
"status": {
"$ref": "#/components/schemas/status_01aebcb95553100049e488759ff20001"
},
"dueDate": {
"type": "string",
"description": "The due date for the goal.",
"format": "date",
"x-workday-type": "Date",
"x-conditionally-required": true,
"x-conditionally-hidden": true
},
"description": {
"type": "string",
"description": "The description of the goal.",
"example": "Lorem ipsum dolor sit amet, cum choro singulis consectetuer ut, ubique iisque contentiones ex duo. Quo lorem etiam eu.",
"x-workday-type": "Rich Text",
"x-conditionally-required": true,
"x-conditionally-hidden": true
},
"category": {
"type": "array",
"description": "One or more categories of the goal.",
"items": {
"$ref": "#/components/schemas/category_01aebcb95553100049e488759ff20003"
},
"x-workday-type": "Multi-instance",
"x-conditionally-required": true,
"x-conditionally-hidden": true
},
"name": {
"type": "string",
"description": "The name of the goal.",
"example": "Lorem ipsum dolor sit amet, cum choro singulis consectetuer ut, ubique iisque contentiones ex duo. Quo lorem etiam eu.",
"x-workday-type": "Rich Text"
},
"descriptor": {
"type": "string",
"description": "The display name of the instance",
"example": "Lorem ipsum dolor sit ame"
},
"id": {
"type": "string",
"description": "The id for Goal"
}
}
}
]
}
businessProcessParameters_af2f2972184110001c29e56f826e0000
{
"description": "The Action Event instance used with the businessProcessLinkable service representations.",
"allOf": [
{
"$ref": "#/components/schemas/performanceReviewBusinessProcessParameters_ab2506050c1610005d28d3b2a5bc0000"
},
{
"type": "object"
}
]
}
reviewTemplate_6c658ca028f9100014d4cf7c16b20000
{
"description": "The review template for the performance review.",
"allOf": [
{
"$ref": "#/components/schemas/INSTANCE_MODEL_REFERENCE"
},
{
"type": "object"
}
]
}
performanceReviewDetail_6c658ca028f9100014d4cee247a60000
{
"allOf": [
{
"required": [
"businessProcessParameters",
"reviewTemplate"
],
"type": "object",
"properties": {
"businessProcessParameters": {
"$ref": "#/components/schemas/businessProcessParameters_af2f2972184110001c29e56f826e0000"
},
"reviewTemplate": {
"$ref": "#/components/schemas/reviewTemplate_6c658ca028f9100014d4cf7c16b20000"
},
"endDate": {
"type": "string",
"description": "The end date of the review period. Leave this field empty if the selected review template has a set review period.",
"format": "date",
"x-workday-type": "Date"
},
"startDate": {
"type": "string",
"description": "The start date of the review period. Leave this field empty if the selected review template has a set review period.",
"format": "date",
"x-workday-type": "Date"
},
"descriptor": {
"type": "string",
"description": "The display name of the instance",
"example": "Lorem ipsum dolor sit ame"
},
"id": {
"type": "string",
"description": "The id for Performance Review"
}
}
}
]
}
supportingInitiatives_4c2f114781a810001ac21e77c6130005
{
"allOf": [
{
"$ref": "#/components/schemas/initiatives_3f682bb95bea100012bc712a6ff40000"
},
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The id for Initiative (Derived)"
}
}
}
]
}
organization_4c2f114781a810001ac21e77c6130000
{
"description": "The organization for the organization goal.",
"allOf": [
{
"$ref": "#/components/schemas/INSTANCE_MODEL_REFERENCE"
},
{
"type": "object"
}
],
"x-workday-populated-by": {
"path": "/values/organizationGoal/organizations",
"field": "id"
}
}
planPeriod_4c2f114781a810001ac21e77c6130001
{
"description": "The goal period for the organization goal.",
"allOf": [
{
"$ref": "#/components/schemas/INSTANCE_MODEL_REFERENCE"
},
{
"type": "object"
}
],
"x-workday-populated-by": {
"path": "/values/organizationGoal/goalPeriods",
"field": "id"
}
}
organizationGoalDetails_4c2f114781a810001ac21d441a4f0000
{
"allOf": [
{
"required": [
"goalName",
"organization",
"planPeriod"
],
"type": "object",
"properties": {
"percentComplete": {
"type": "number",
"description": "The percent complete for the organization goal.",
"format": "double",
"example": 999.9999,
"x-workday-type": "Numeric",
"x-conditionally-hidden": true
},
"supportingInitiatives": {
"type": "array",
"description": "The supporting initiatives for the organization goal.",
"items": {
"$ref": "#/components/schemas/supportingInitiatives_4c2f114781a810001ac21e77c6130005"
},
"x-workday-type": "Multi-instance"
},
"private": {
"type": "boolean",
"description": "True if the organization goal is private and only visible to members of the organization chain. Goals with supporting initiatives can't be private.",
"example": true,
"x-workday-type": "Boolean"
},
"organization": {
"$ref": "#/components/schemas/organization_4c2f114781a810001ac21e77c6130000"
},
"planPeriod": {
"$ref": "#/components/schemas/planPeriod_4c2f114781a810001ac21e77c6130001"
},
"goalName": {
"type": "string",
"description": "The goal name for the organization goal.",
"example": "Lorem ipsum dolor sit amet, cum choro singulis consectetuer ut, ubique iisque contentiones ex duo. Quo lorem etiam eu.",
"x-workday-type": "Text"
},
"goalDescription": {
"type": "string",
"description": "The goal description for the organization goal.",
"example": "Lorem ipsum dolor sit amet, cum choro singulis consectetuer ut, ubique iisque contentiones ex duo. Quo lorem etiam eu.",
"x-workday-type": "Rich Text",
"x-conditionally-hidden": true
},
"calculatePercentComplete": {
"type": "boolean",
"description": "True if the organization goal completion percentage is calculated.",
"example": true,
"x-workday-type": "Boolean",
"x-conditionally-hidden": true
},
"id": {
"type": "string",
"description": "The id for Organization Goal"
}
}
}
]
}
feedbackBadgeIcon_d4d355b2d3db100020b8608b75250016
{
"description": "Returns Icon for Feedback Badge",
"allOf": [
{
"$ref": "#/components/schemas/INSTANCE_MODEL_REFERENCE"
},
{
"type": "object"
}
]
}
feedbackBadgeDetail_9eab868ca81410001402525d054211f7
{
"allOf": [
{
"type": "object",
"properties": {
"feedbackBadgeID": {
"type": "string",
"description": "The Reference ID to use for lookups within our Workday Web Services. For supervisory organizations, this is also the 'Organization ID'",
"example": "Lorem ipsum dolor sit amet, cum choro singulis consectetuer ut, ubique iisque contentiones ex duo. Quo lorem etiam eu.",
"x-workday-type": "Text"
},
"name": {
"type": "string",
"description": "The name of this feedback badge.",
"example": "Lorem ipsum dolor sit amet, cum choro singulis consectetuer ut, ubique iisque contentiones ex duo. Quo lorem etiam eu.",
"x-workday-type": "Text"
},
"feedbackBadgeIcon": {
"$ref": "#/components/schemas/feedbackBadgeIcon_d4d355b2d3db100020b8608b75250016"
},
"workdayID": {
"maxLength": 36,
"type": "string",
"description": "Returns the Workday ID for a given object.",
"example": "Lorem ipsum dolor sit amet, cum choro singulis consectetuer ut, ubique iisque contentiones ex duo. Quo lorem etiam eu.",
"x-workday-type": "Text"
}
}
}
]
}
workerType_3f78eeedc01d1000138d97d80e5a0000
{
"description": "Retrieves the employee type or contingent worker type for the worker.",
"allOf": [
{
"$ref": "#/components/schemas/INSTANCE_MODEL_REFERENCE"
},
{
"type": "object"
}
]
}
additionalJobs_352c3a97ecd51000353cba4ccc1c0043
{
"allOf": [
{
"$ref": "#/components/schemas/jobDataForWorker_b8ac205877fd10000ea91719a02a00a2"
},
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The id for Position \nExample(s): Position_ID=Sample_Value"
}
}
}
]
}
primaryJob_352c3a97ecd51000353cba144c5b0042
{
"description": "The worker's primary job.",
"allOf": [
{
"$ref": "#/components/schemas/jobDataForWorker_b8ac205877fd10000ea91719a02a00a2"
},
{
"type": "object"
}
]
}
person_0ad147648b0a1000237bd486634a001a
{
"description": "Person for the Worker",
"allOf": [
{
"$ref": "#/components/schemas/personDataView_be343791f59d100028d6a277ca8a0017"
},
{
"type": "object"
}
]
}
workerData_c2466b0778c610000d1936006720000e
{
"allOf": [
{
"type": "object",
"properties": {
"workerType": {
"$ref": "#/components/schemas/workerType_3f78eeedc01d1000138d97d80e5a0000"
},
"additionalJobs": {
"type": "array",
"description": "The employee’s additional jobs and international assignments.",
"items": {
"$ref": "#/components/schemas/additionalJobs_352c3a97ecd51000353cba4ccc1c0043"
},
"x-workday-type": "Multi-instance"
},
"primaryJob": {
"$ref": "#/components/schemas/primaryJob_352c3a97ecd51000353cba144c5b0042"
},
"person": {
"$ref": "#/components/schemas/person_0ad147648b0a1000237bd486634a001a"
},
"workerId": {
"type": "string",
"description": "The Employee ID or Contingent Worker ID for the worker.",
"example": "Lorem ipsum dolor sit amet, cum choro singulis consectetuer ut, ubique iisque contentiones ex duo. Quo lorem etiam eu.",
"x-workday-type": "Text"
},
"descriptor": {
"type": "string",
"description": "The display name of the instance",
"example": "Lorem ipsum dolor sit ame"
},
"id": {
"type": "string",
"description": "The id for Worker"
}
}
}
]
}
worker_47e98fa91eee100017c2c78c80410000
{
"description": "The worker for this goal.",
"allOf": [
{
"$ref": "#/components/schemas/INSTANCE_MODEL_REFERENCE"
},
{
"type": "object"
}
]
}
createdBy_88d272af423b100036b561a7784b0000
{
"description": "The worker who created the goal.",
"allOf": [
{
"$ref": "#/components/schemas/INSTANCE_MODEL_REFERENCE"
},
{
"type": "object"
}
]
}
relatesTo_2c793e888bcd100033e663a0dee60005
{
"allOf": [
{
"$ref": "#/components/schemas/relatesToSummary_2c793e888bcd100034b42ada01b20000"
},
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The id for Talent Tag"
}
}
}
]
}
activityStreamableItem_88d272af423b100036c6faa3326e0000
{
"allOf": [
{
"$ref": "#/components/schemas/activityStreamableItemSummary_88d272af423b100036fc19a90e210000"
},
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The id for Activity Stream Item Relatable"
}
}
}
]
}
associatedReviews_9df8579a128710001a70f1b334ed0000
{
"allOf": [
{
"$ref": "#/components/schemas/associatedReviewsSummary_2c793e888bcd1000346e381955dd0000"
},
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The id for \\~Employee\\~ \\~Review\\~ Template"
}
}
}
]
}
category_9df8579a128710001a1e8d8069b20000
{
"allOf": [
{
"$ref": "#/components/schemas/categorySummary_88d272af423b100036e57ea69d570000"
},
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The id for \\~Goal\\~ Category"
}
}
}
]
}
supports_9df8579a128710001ac8e9879d1f0000
{
"description": "The organization goal for the supervisory organization. An individual goal can support the organization goal.",
"allOf": [
{
"$ref": "#/components/schemas/INSTANCE_MODEL_REFERENCE"
},
{
"type": "object"
}
],
"x-label": "Organization Alignment",
"x-conditionally-required": true,
"x-conditionally-hidden": true
}
status_9df8579a128710001ac8e9879d1f0001
{
"description": "The status of the goal.",
"allOf": [
{
"$ref": "#/components/schemas/INSTANCE_MODEL_REFERENCE"
},
{
"type": "object"
}
],
"x-conditionally-required": true,
"x-conditionally-hidden": true
}
goalsSummary_2c793e888bcd100033e663075a2b0000
{
"allOf": [
{
"type": "object",
"properties": {
"worker": {
"$ref": "#/components/schemas/worker_47e98fa91eee100017c2c78c80410000"
},
"createdBy": {
"$ref": "#/components/schemas/createdBy_88d272af423b100036b561a7784b0000"
},
"state": {
"type": "string",
"description": "The state of the goal. Indicates why the goal is non-editable or why a user needs to take an action to successfully create or update the goal. Possible values: Pending approval, Associated with In Progress Review, Pending archival, Pending restore, Saved for later, and Needs revising.",
"example": "Lorem ipsum dolor sit amet, cum choro singulis consectetuer ut, ubique iisque contentiones ex duo. Quo lorem etiam eu.",
"x-workday-type": "Text"
},
"name": {
"type": "string",
"description": "The name of the goal.",
"example": "Lorem ipsum dolor sit amet, cum choro singulis consectetuer ut, ubique iisque contentiones ex duo. Quo lorem etiam eu.",
"x-workday-type": "Rich Text"
},
"lockedReason": {
"type": "string",
"description": "The reason the goal is non-editable. Possible values: Approval pending and Employee review in progress.",
"example": "Lorem ipsum dolor sit amet, cum choro singulis consectetuer ut, ubique iisque contentiones ex duo. Quo lorem etiam eu.",
"x-workday-type": "Text",
"x-workday-confidence-level": "Production"
},
"relatesTo": {
"type": "array",
"description": "The tags included with the goal.",
"items": {
"$ref": "#/components/schemas/relatesTo_2c793e888bcd100033e663a0dee60005"
},
"x-workday-type": "Multi-instance",
"x-conditionally-hidden": true
},
"activityStreamableItem": {
"type": "array",
"description": "The activity stream associated with the goal.",
"items": {
"$ref": "#/components/schemas/activityStreamableItem_88d272af423b100036c6faa3326e0000"
},
"x-workday-type": "Multi-instance"
},
"dueDate": {
"type": "string",
"description": "The date when the goal is due.",
"format": "date",
"x-workday-type": "Date",
"x-conditionally-required": true,
"x-conditionally-hidden": true
},
"description": {
"type": "string",
"description": "The description of the goal.",
"example": "Lorem ipsum dolor sit amet, cum choro singulis consectetuer ut, ubique iisque contentiones ex duo. Quo lorem etiam eu.",
"x-workday-type": "Rich Text",
"x-conditionally-required": true,
"x-conditionally-hidden": true
},
"associatedReviews": {
"type": "array",
"description": "The associated reviews with the goal.",
"items": {
"$ref": "#/components/schemas/associatedReviews_9df8579a128710001a70f1b334ed0000"
},
"x-workday-type": "Multi-instance",
"x-conditionally-hidden": true
},
"category": {
"type": "array",
"description": "The category of the goal.",
"items": {
"$ref": "#/components/schemas/category_9df8579a128710001a1e8d8069b20000"
},
"x-workday-type": "Multi-instance",
"x-conditionally-required": true,
"x-conditionally-hidden": true
},
"supports": {
"$ref": "#/components/schemas/supports_9df8579a128710001ac8e9879d1f0000"
},
"status": {
"$ref": "#/components/schemas/status_9df8579a128710001ac8e9879d1f0001"
},
"completedOn": {
"type": "string",
"description": "The date when the goal is completed.",
"format": "date",
"x-workday-type": "Date",
"x-conditionally-required": true,
"x-conditionally-hidden": true
},
"id": {
"type": "string",
"description": "The id for Goal"
}
}
}
]
}
skills_a463fbf737f4100029e1763695640000
{
"allOf": [
{
"$ref": "#/components/schemas/skillRepresentation_5e93ef5b4e3d100014e4aef5dab20000"
},
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The id for Skill Item Promptable"
}
}
}
]
}
statusWorkdayOwned_2462b55aa33910001fd2663dd4ac0000
{
"description": "The Workday owned mapped metadata \\~development item\\~ status instance.",
"allOf": [
{
"$ref": "#/components/schemas/INSTANCE_MODEL_REFERENCE"
},
{
"type": "object"
}
]
}
createdBy_5e93ef5b4e3d10001454a1baf0de0003
{
"description": "The \\~worker\\~ that initially created the \\~development item\\~.",
"allOf": [
{
"$ref": "#/components/schemas/INSTANCE_MODEL_REFERENCE"
},
{
"type": "object"
}
]
}
lastUpdatedBy_5e93ef5b4e3d10001454a1baf0de0001
{
"description": "The \\~worker\\~ that last modified the \\~development item\\~.",
"allOf": [
{
"$ref": "#/components/schemas/INSTANCE_MODEL_REFERENCE"
},
{
"type": "object"
}
]
}
category_254f6d28e39d1000277c25aa999e0000
{
"allOf": [
{
"$ref": "#/components/schemas/developmentItemCategory_5e93ef5b4e3d1000148a36cbbd130000"
},
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The id for \\~Development Item\\~ Category"
}
}
}
]
}
status_254f6d28e39d1000277c25aa999e0002
{
"description": "The tenanted status values for the \\~development item\\~.",
"allOf": [
{
"$ref": "#/components/schemas/INSTANCE_MODEL_REFERENCE"
},
{
"type": "object"
}
]
}
relatesTo_1f3f256e731910001db66788b13e0000
{
"allOf": [
{
"$ref": "#/components/schemas/talentTag_ffdd5de32f7f100016c88e016ad20000"
},
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The id for Talent Tag"
}
}
}
]
}
tiedTo_ce100f5edb151000188b66240a570000
{
"description": "The \\~employee\\~ \\~review\\~ that the \\~development item\\~ is tied to.",
"allOf": [
{
"$ref": "#/components/schemas/developmentItemReviewRepresentation_ce100f5edb15100018892f3009f80000"
},
{
"type": "object"
}
]
}
developmentItemDetails_254f6d28e39d1000275383bf2ac20000
{
"allOf": [
{
"type": "object",
"properties": {
"skills": {
"type": "array",
"description": "The skills tagged to a \\~development item \\~.",
"items": {
"$ref": "#/components/schemas/skills_a463fbf737f4100029e1763695640000"
},
"x-workday-type": "Multi-instance",
"x-conditionally-hidden": true,
"x-workday-confidence-level": "Production"
},
"startDate": {
"type": "string",
"description": "The locally formatted start date of the \\~development item\\~.",
"example": "Lorem ipsum dolor sit amet, cum choro singulis consectetuer ut, ubique iisque contentiones ex duo. Quo lorem etiam eu.",
"x-workday-type": "Text"
},
"inReview": {
"type": "boolean",
"description": "True if the \\~development item\\~ is locked as a result of being in review.",
"example": true,
"x-workday-type": "Boolean"
},
"completionDate": {
"type": "string",
"description": "The locally formatted completion date of the \\~development item\\~.",
"example": "Lorem ipsum dolor sit amet, cum choro singulis consectetuer ut, ubique iisque contentiones ex duo. Quo lorem etiam eu.",
"x-workday-type": "Text"
},
"createdOnDate": {
"type": "string",
"description": "The locally formatted creation date of the \\~development item\\~.",
"example": "Lorem ipsum dolor sit amet, cum choro singulis consectetuer ut, ubique iisque contentiones ex duo. Quo lorem etiam eu.",
"x-workday-type": "Text"
},
"statusWorkdayOwned": {
"$ref": "#/components/schemas/statusWorkdayOwned_2462b55aa33910001fd2663dd4ac0000"
},
"createdBy": {
"$ref": "#/components/schemas/createdBy_5e93ef5b4e3d10001454a1baf0de0003"
},
"lastUpdatedBy": {
"$ref": "#/components/schemas/lastUpdatedBy_5e93ef5b4e3d10001454a1baf0de0001"
},
"statusNote": {
"type": "string",
"description": "A simple text field to provide details regarding the \\~development item\\~ status.",
"example": "Lorem ipsum dolor sit amet, cum choro singulis consectetuer ut, ubique iisque contentiones ex duo. Quo lorem etiam eu.",
"x-workday-type": "Text"
},
"category": {
"type": "array",
"description": "The tenanted category values for the \\~development item\\~.",
"items": {
"$ref": "#/components/schemas/category_254f6d28e39d1000277c25aa999e0000"
},
"x-workday-type": "Multi-instance"
},
"status": {
"$ref": "#/components/schemas/status_254f6d28e39d1000277c25aa999e0002"
},
"title": {
"maxLength": 140,
"type": "string",
"description": "The title or name of the \\~development item\\~.",
"example": "Lorem ipsum dolor sit amet, cum choro singulis consectetuer ut, ubique iisque contentiones ex duo. Quo lorem etiam eu.",
"x-workday-type": "Text"
},
"additionalInformation": {
"type": "string",
"description": "A rich text field for adding descriptive details about the \\~development item\\~.",
"example": "Lorem ipsum dolor sit amet, cum choro singulis consectetuer ut, ubique iisque contentiones ex duo. Quo lorem etiam eu.",
"x-workday-type": "Rich Text"
},
"lastChangedDateTime": {
"type": "string",
"description": "The locally formatted date and time the \\~development item\\~ was last modified.",
"example": "Lorem ipsum dolor sit amet, cum choro singulis consectetuer ut, ubique iisque contentiones ex duo. Quo lorem etiam eu.",
"x-workday-type": "Text"
},
"relatesTo": {
"type": "array",
"description": "Workday attributes, including \\~competency\\~, work experience, and job profile, that are associated with the development item.",
"items": {
"$ref": "#/components/schemas/relatesTo_1f3f256e731910001db66788b13e0000"
},
"x-workday-type": "Multi-instance"
},
"tiedTo": {
"$ref": "#/components/schemas/tiedTo_ce100f5edb151000188b66240a570000"
},
"id": {
"type": "string",
"description": "The id for Development Item"
}
}
}
]
}
removeDevelopmentItem_919f6dec58531000175cd28824d20000
{
"allOf": [
{
"type": "object",
"properties": {
"descriptor": {
"type": "string",
"description": "The display name of the instance",
"example": "Lorem ipsum dolor sit ame"
},
"id": {
"type": "string",
"description": "Workday Id or Reference Id of the instance."
}
}
}
]
}
goalCategory_01aebcb9555310004a268d3a3e230000
{
"allOf": [
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Workday Id or Reference Id of the instance."
}
}
}
]
}
associatedReviewsSummary_2c793e888bcd1000346e381955dd0000
{
"allOf": [
{
"type": "object",
"properties": {
"descriptor": {
"type": "string",
"description": "The display name of the instance",
"example": "Lorem ipsum dolor sit ame"
},
"id": {
"type": "string",
"description": "Workday Id or Reference Id of the instance."
}
}
}
]
}
contentType_5049263aaca51000218bd46d6cf60005
{
"description": "The MIME type.",
"allOf": [
{
"$ref": "#/components/schemas/INSTANCE_MODEL_REFERENCE"
},
{
"type": "object"
}
]
}
uploadedBy_5049263aaca51000218bd46d6cf60001
{
"description": "The person who uploaded the attachment.",
"allOf": [
{
"$ref": "#/components/schemas/INSTANCE_MODEL_REFERENCE"
},
{
"type": "object"
}
],
"x-readOnly": true
}
category_5049263aaca51000218bd46d6cf60008
{
"description": "The category of the business process attachment.",
"allOf": [
{
"$ref": "#/components/schemas/INSTANCE_MODEL_REFERENCE"
},
{
"type": "object"
}
]
}
goalEventAttachmentsForToolbar_5049263aaca51000218bd46d6cf60000
{
"allOf": [
{
"type": "object",
"properties": {
"fileLength": {
"type": "integer",
"description": "The file length.",
"format": "int32",
"example": 99999999999,
"x-workday-type": "Numeric"
},
"contentType": {
"$ref": "#/components/schemas/contentType_5049263aaca51000218bd46d6cf60005"
},
"file": {
"type": "string",
"description": "The file image data.",
"format": "binary",
"x-workday-type": "File"
},
"description": {
"type": "string",
"description": "The attachment description.",
"example": "Lorem ipsum dolor sit amet, cum choro singulis consectetuer ut, ubique iisque contentiones ex duo. Quo lorem etiam eu.",
"x-workday-type": "Text"
},
"uploadedBy": {
"$ref": "#/components/schemas/uploadedBy_5049263aaca51000218bd46d6cf60001"
},
"category": {
"$ref": "#/components/schemas/category_5049263aaca51000218bd46d6cf60008"
},
"fileName": {
"maxLength": 255,
"type": "string",
"description": "The file name.",
"example": "Lorem ipsum dolor sit amet, cum choro singulis consectetuer ut, ubique iisque contentiones ex duo. Quo lorem etiam eu.",
"x-workday-type": "Text"
},
"uploadDate": {
"type": "string",
"description": "The date of the uploaded attachment.",
"format": "date",
"x-workday-type": "Date",
"x-readOnly": true
},
"id": {
"type": "string",
"description": "Workday Id or Reference Id of the instance."
}
}
}
]
}
overallBusinessProcess_ab2506050c1610005d28d3b2a5bc0004
{
"description": "Returns the Top Level (overall) Business Process that this Event is part of or returns the same instance if this Event is not a sub-process.",
"allOf": [
{
"$ref": "#/components/schemas/INSTANCE_MODEL_REFERENCE"
},
{
"type": "object"
}
],
"x-readOnly": true
}
action_ab2506050c1610005d28d3b2a5bc0002
{
"description": "a set containing no instances",
"allOf": [
{
"$ref": "#/components/schemas/INSTANCE_MODEL_REFERENCE"
},
{
"type": "object"
}
]
}
for_ab2506050c1610005d28d3b2a5bc0005
{
"description": "The thing which this business process is about. It could be another business process if this is a sub-process",
"allOf": [
{
"$ref": "#/components/schemas/INSTANCE_MODEL_REFERENCE"
},
{
"type": "object"
}
],
"x-readOnly": true
}
transactionStatus_ab2506050c1610005d28d3b2a5bc000a
{
"description": "Transaction Status for Facet Search",
"allOf": [
{
"$ref": "#/components/schemas/INSTANCE_MODEL_REFERENCE"
},
{
"type": "object"
}
]
}
performanceReviewBusinessProcessParameters_ab2506050c1610005d28d3b2a5bc0000
{
"allOf": [
{
"required": [
"action"
],
"type": "object",
"properties": {
"comment": {
"type": "string",
"description": "Returns a null.",
"example": "Lorem ipsum dolor sit amet, cum choro singulis consectetuer ut, ubique iisque contentiones ex duo. Quo lorem etiam eu.",
"x-workday-type": "Text"
},
"overallBusinessProcess": {
"$ref": "#/components/schemas/overallBusinessProcess_ab2506050c1610005d28d3b2a5bc0004"
},
"comments": {
"type": "array",
"description": "Returns the comments for the current business process.",
"items": {
"$ref": "#/components/schemas/comments_ab2506050c1610005d28d3b2a5bc0001"
},
"x-workday-type": "Multi-instance",
"x-readOnly": true
},
"action": {
"$ref": "#/components/schemas/action_ab2506050c1610005d28d3b2a5bc0002"
},
"overallStatus": {
"type": "string",
"description": "The current status of the business process. For example: Successfully Completed, Denied, Terminated.",
"example": "Lorem ipsum dolor sit amet, cum choro singulis consectetuer ut, ubique iisque contentiones ex duo. Quo lorem etiam eu.",
"x-workday-type": "Text",
"x-readOnly": true
},
"warningValidations": {
"type": "string",
"description": "Warning message for an action event triggered by a condition.",
"example": "Lorem ipsum dolor sit amet, cum choro singulis consectetuer ut, ubique iisque contentiones ex duo. Quo lorem etiam eu.",
"x-workday-type": "Text",
"x-readOnly": true
},
"for": {
"$ref": "#/components/schemas/for_ab2506050c1610005d28d3b2a5bc0005"
},
"criticalValidations": {
"type": "string",
"description": "Validation message for an action event triggered by a condition.",
"example": "Lorem ipsum dolor sit amet, cum choro singulis consectetuer ut, ubique iisque contentiones ex duo. Quo lorem etiam eu.",
"x-workday-type": "Text",
"x-readOnly": true
},
"transactionStatus": {
"$ref": "#/components/schemas/transactionStatus_ab2506050c1610005d28d3b2a5bc000a"
}
}
}
]
}
country_af21e47ff7c01000092ecf4d7ad30270
{
"description": "Returns the country from the primary address for the location.",
"allOf": [
{
"$ref": "#/components/schemas/countryDataForLocationData_af21e47ff7c01000092e0e4f9a22026e"
},
{
"type": "object"
}
]
}
locationDataJobView_6d3eb084b4c410002b5fa13f0c9d0056
{
"allOf": [
{
"type": "object",
"properties": {
"country": {
"$ref": "#/components/schemas/country_af21e47ff7c01000092ecf4d7ad30270"
},
"descriptor": {
"type": "string",
"description": "The display name of the instance",
"example": "Lorem ipsum dolor sit ame"
},
"id": {
"type": "string",
"description": "The id for Location \nExample(s): Location_ID=Sample_Value"
}
}
}
]
}
categoryDetails_4fe10913736c10003810e63ab05d0000
{
"allOf": [
{
"type": "object",
"properties": {
"descriptor": {
"type": "string",
"description": "The display name of the instance",
"example": "Lorem ipsum dolor sit ame"
},
"id": {
"type": "string",
"description": "Workday Id or Reference Id of the instance."
}
}
}
]
}
person_6c1b43568ab7100028c4cf37196c0000
{
"description": "The person that made the comment for the event.",
"allOf": [
{
"$ref": "#/components/schemas/INSTANCE_MODEL_REFERENCE"
},
{
"type": "object"
}
]
}
workersToNotify_9e478586f65410001035b6c26a4c0000
{
"allOf": [
{
"type": "object",
"properties": {
"descriptor": {
"type": "string",
"description": "The display name of the instance",
"example": "Lorem ipsum dolor sit ame"
},
"id": {
"type": "string",
"description": "Workday Id or Reference Id of the instance."
}
}
}
]
}
jobTypeData_b8ac205877fd100005c3b50b74a30055
{
"allOf": [
{
"type": "object",
"properties": {
"descriptor": {
"type": "string",
"description": "The display name of the instance",
"example": "Lorem ipsum dolor sit ame"
}
}
}
]
}
businessProcessParameters_9708c966f04f10000e4ae9a03cf80001
{
"description": "The Action Event instance to be used with businessProcessLinkable linked service representations.",
"allOf": [
{
"$ref": "#/components/schemas/businessProcessParameters_afd6ac52d6251000117be546cb060000"
},
{
"type": "object"
}
]
}
relatedFeedbackEvents_9708c966f04f10000e1e9b7f9a5c0000
{
"allOf": [
{
"type": "object",
"properties": {
"businessProcessParameters": {
"$ref": "#/components/schemas/businessProcessParameters_9708c966f04f10000e4ae9a03cf80001"
},
"descriptor": {
"type": "string",
"description": "The display name of the instance",
"example": "Lorem ipsum dolor sit ame"
},
"id": {
"type": "string",
"description": "The id for Give Feedback Anytime Event"
}
}
}
]
}
getWorkersFeedbackAlsoAbout_3ab333661034100010b5635b2f7a0302
{
"allOf": [
{
"type": "object",
"properties": {
"descriptor": {
"type": "string",
"description": "The display name of the instance",
"example": "Lorem ipsum dolor sit ame"
},
"id": {
"type": "string",
"description": "Workday Id or Reference Id of the instance."
}
}
}
]
}
person_5049263aaca51000211971af41b60001
{
"description": "The person that made the comment for the event.",
"allOf": [
{
"$ref": "#/components/schemas/INSTANCE_MODEL_REFERENCE"
},
{
"type": "object"
}
]
}
activityStreamableItemSummary_88d272af423b100036fc19a90e210000
{
"allOf": [
{
"type": "object",
"properties": {
"descriptor": {
"type": "string",
"description": "The display name of the instance",
"example": "Lorem ipsum dolor sit ame"
},
"id": {
"type": "string",
"description": "Workday Id or Reference Id of the instance."
}
}
}
]
}
action_6c1b43568ab71000282e0c88614e0002
{
"description": "a set containing no instances",
"allOf": [
{
"$ref": "#/components/schemas/INSTANCE_MODEL_REFERENCE"
},
{
"type": "object"
}
]
}
overallBusinessProcess_6c1b43568ab71000282e0c88614e0004
{
"description": "Returns the Top Level (overall) Business Process that this Event is part of or returns the same instance if this Event is not a sub-process.",
"allOf": [
{
"$ref": "#/components/schemas/INSTANCE_MODEL_REFERENCE"
},
{
"type": "object"
}
],
"x-readOnly": true
}
for_6c1b43568ab71000282e0c88614e0005
{
"description": "The thing which this business process is about. It could be another business process if this is a sub-process",
"allOf": [
{
"$ref": "#/components/schemas/INSTANCE_MODEL_REFERENCE"
},
{
"type": "object"
}
],
"x-readOnly": true
}
transactionStatus_6c1b43568ab71000282e0c88614e000a
{
"description": "Transaction Status for Facet Search",
"allOf": [
{
"$ref": "#/components/schemas/INSTANCE_MODEL_REFERENCE"
},
{
"type": "object"
}
]
}
cascadedGoalEventBusinessProcessParameters_6c1b43568ab71000282e0c88614e0000
{
"allOf": [
{
"required": [
"action"
],
"type": "object",
"properties": {
"comment": {
"type": "string",
"description": "Returns a null.",
"example": "Lorem ipsum dolor sit amet, cum choro singulis consectetuer ut, ubique iisque contentiones ex duo. Quo lorem etiam eu.",
"x-workday-type": "Text"
},
"comments": {
"type": "array",
"description": "Returns the comments for the current business process.",
"items": {
"$ref": "#/components/schemas/comments_6c1b43568ab71000282e0c88614e0001"
},
"x-workday-type": "Multi-instance",
"x-readOnly": true
},
"action": {
"$ref": "#/components/schemas/action_6c1b43568ab71000282e0c88614e0002"
},
"overallBusinessProcess": {
"$ref": "#/components/schemas/overallBusinessProcess_6c1b43568ab71000282e0c88614e0004"
},
"for": {
"$ref": "#/components/schemas/for_6c1b43568ab71000282e0c88614e0005"
},
"criticalValidations": {
"type": "string",
"description": "Validation message for an action event triggered by a condition.",
"example": "Lorem ipsum dolor sit amet, cum choro singulis consectetuer ut, ubique iisque contentiones ex duo. Quo lorem etiam eu.",
"x-workday-type": "Text",
"x-readOnly": true
},
"overallStatus": {
"type": "string",
"description": "The current status of the business process. For example: Successfully Completed, Denied, Terminated.",
"example": "Lorem ipsum dolor sit amet, cum choro singulis consectetuer ut, ubique iisque contentiones ex duo. Quo lorem etiam eu.",
"x-workday-type": "Text",
"x-readOnly": true
},
"transactionStatus": {
"$ref": "#/components/schemas/transactionStatus_6c1b43568ab71000282e0c88614e000a"
},
"warningValidations": {
"type": "string",
"description": "Warning message for an action event triggered by a condition.",
"example": "Lorem ipsum dolor sit amet, cum choro singulis consectetuer ut, ubique iisque contentiones ex duo. Quo lorem etiam eu.",
"x-workday-type": "Text",
"x-readOnly": true
}
}
}
]
}
gigOpeningTalentTag_abe398d81e1e1000167d6197a9060000
{
"allOf": [
{
"type": "object",
"properties": {
"descriptor": {
"type": "string",
"description": "The display name of the instance",
"example": "Lorem ipsum dolor sit ame"
},
"id": {
"type": "string",
"description": "The id for Flex Team Opening (Derived)"
}
}
}
]
}
jobWorkspaceData_1005157e3d631000144205466a6c13d3
{
"allOf": [
{
"type": "object",
"properties": {
"locationChain": {
"type": "string",
"description": "Location chain including bread crumbs for location.",
"example": "Sample Location Chain",
"x-workday-type": "Text"
},
"descriptor": {
"type": "string",
"description": "The display name of the instance",
"example": "Lorem ipsum dolor sit ame"
},
"id": {
"type": "string",
"description": "The id for Location \nExample(s): Location_ID=Sample_Value"
}
}
}
]
}
personDataView_be343791f59d100028d6a277ca8a0017
{
"allOf": [
{
"type": "object",
"properties": {
"phone": {
"type": "string",
"description": "Returns the primary public work phone number for the worker.",
"example": "Lorem ipsum dolor sit amet, cum choro singulis consectetuer ut, ubique iisque contentiones ex duo. Quo lorem etiam eu.",
"x-workday-type": "Text"
},
"email": {
"type": "string",
"description": "Returns the public primary work email address for the worker.",
"example": "Lorem ipsum dolor sit amet, cum choro singulis consectetuer ut, ubique iisque contentiones ex duo. Quo lorem etiam eu.",
"x-workday-type": "Text"
},
"id": {
"type": "string",
"description": "Workday Id or Reference Id of the instance."
}
}
}
]
}
possibleMultipleChoiceAnswers_4c60c128c16510000a59980041610000
{
"allOf": [
{
"type": "object",
"properties": {
"descriptor": {
"type": "string",
"description": "The display name of the instance",
"example": "Lorem ipsum dolor sit ame"
},
"id": {
"type": "string",
"description": "Workday Id or Reference Id of the instance."
}
}
}
]
}
jobProfileJobView_fab4a151b24810000d511d61ee641262
{
"allOf": [
{
"type": "object",
"properties": {
"descriptor": {
"type": "string",
"description": "The display name of the instance",
"example": "Lorem ipsum dolor sit ame"
},
"id": {
"type": "string",
"description": "The id for Job Profile \nExample(s): Job_Profile_ID=Sample_Value"
}
}
}
]
}
attachments_43b30ba735b8100010e21c8b136f0119
{
"allOf": [
{
"$ref": "#/components/schemas/eventAttachmentsForToolbar_43b30ba735b8100011ee4767246d0143"
},
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The id for Event Attachment (Derived) \nExample(s): File_ID=Sample_Value"
}
}
}
]
}
for_5d688bd57bb910001815ab3dd10024a9
{
"description": "The thing which this business process is about. It could be another business process if this is a sub-process",
"allOf": [
{
"$ref": "#/components/schemas/INSTANCE_MODEL_REFERENCE"
},
{
"type": "object"
}
],
"x-readOnly": true
}
overallBusinessProcess_5d688bd57bb910001815ab49927724aa
{
"description": "Returns the Top Level (overall) Business Process that this Event is part of or returns the same instance if this Event is not a sub-process.",
"allOf": [
{
"$ref": "#/components/schemas/INSTANCE_MODEL_REFERENCE"
},
{
"type": "object"
}
],
"x-readOnly": true
}
action_38ff08ab6736100010816009079d0126
{
"description": "a set containing no instances",
"allOf": [
{
"$ref": "#/components/schemas/INSTANCE_MODEL_REFERENCE"
},
{
"type": "object"
}
]
}
transactionStatus_7457adcbe0fa1000089b63ab3a510000
{
"description": "Transaction Status for Facet Search",
"allOf": [
{
"$ref": "#/components/schemas/INSTANCE_MODEL_REFERENCE"
},
{
"type": "object"
}
]
}
businessProcessParameters_afd6ac52d6251000117be546cb060000
{
"allOf": [
{
"required": [
"action"
],
"type": "object",
"properties": {
"warningValidations": {
"type": "string",
"description": "Warning message for an action event triggered by a condition.",
"example": "Lorem ipsum dolor sit amet, cum choro singulis consectetuer ut, ubique iisque contentiones ex duo. Quo lorem etiam eu.",
"x-workday-type": "Text",
"x-readOnly": true
},
"overallStatus": {
"type": "string",
"description": "The current status of the business process. For example: Successfully Completed, Denied, Terminated.",
"example": "Lorem ipsum dolor sit amet, cum choro singulis consectetuer ut, ubique iisque contentiones ex duo. Quo lorem etiam eu.",
"x-workday-type": "Text",
"x-readOnly": true
},
"attachments": {
"type": "array",
"description": "Returns attachments associated with this business process that are uploaded from the toolbar and are accessible to the processing person. Returns blank if either of these conditions are not met.",
"items": {
"$ref": "#/components/schemas/attachments_43b30ba735b8100010e21c8b136f0119"
},
"x-workday-type": "Multi-instance"
},
"for": {
"$ref": "#/components/schemas/for_5d688bd57bb910001815ab3dd10024a9"
},
"criticalValidations": {
"type": "string",
"description": "Validation message for an action event triggered by a condition.",
"example": "Lorem ipsum dolor sit amet, cum choro singulis consectetuer ut, ubique iisque contentiones ex duo. Quo lorem etiam eu.",
"x-workday-type": "Text",
"x-readOnly": true
},
"comment": {
"type": "string",
"description": "Returns a null.",
"example": "Lorem ipsum dolor sit amet, cum choro singulis consectetuer ut, ubique iisque contentiones ex duo. Quo lorem etiam eu.",
"x-workday-type": "Text"
},
"overallBusinessProcess": {
"$ref": "#/components/schemas/overallBusinessProcess_5d688bd57bb910001815ab49927724aa"
},
"action": {
"$ref": "#/components/schemas/action_38ff08ab6736100010816009079d0126"
},
"comments": {
"type": "array",
"description": "Returns the comments for the current business process.",
"items": {
"$ref": "#/components/schemas/comments_38ff08ab6736100010b0e3c4dbb3012b"
},
"x-workday-type": "Multi-instance",
"x-readOnly": true
},
"transactionStatus": {
"$ref": "#/components/schemas/transactionStatus_7457adcbe0fa1000089b63ab3a510000"
}
}
}
]
}
businessProcessParameters_01aebcb9555310001f7a998402280001
{
"description": "These parameters are event framework specific properties for an event that can be set as part of the submission of the event.",
"allOf": [
{
"$ref": "#/components/schemas/goalsBusinessProcessParameters_5049263aaca5100020f193a8a8190000"
},
{
"type": "object"
}
]
}
submitWorkerGoalEvent_01aebcb9555310001f7a998402280000
{
"allOf": [
{
"required": [
"businessProcessParameters"
],
"type": "object",
"properties": {
"businessProcessParameters": {
"$ref": "#/components/schemas/businessProcessParameters_01aebcb9555310001f7a998402280001"
},
"descriptor": {
"type": "string",
"description": "The display name of the instance",
"example": "Lorem ipsum dolor sit ame"
},
"id": {
"type": "string",
"description": "The id for Worker Goal Event"
}
}
}
]
}
person_86093b8a932f10001499f38c72410130
{
"description": "Comment made by Person",
"allOf": [
{
"$ref": "#/components/schemas/INSTANCE_MODEL_REFERENCE"
},
{
"type": "object"
}
]
}
feedbackAbout_4db9c44d36231000134c7b8eb3800003
{
"description": "The worker this feedback event is about.",
"allOf": [
{
"$ref": "#/components/schemas/INSTANCE_MODEL_REFERENCE"
},
{
"type": "object"
}
],
"x-readOnly": true
}
feedbackTemplate_4db9c44d36231000134c7b8eb3800000
{
"description": "The feedback templates used to obtain employee feedback. The template contains pre set questions for the feedback event",
"allOf": [
{
"$ref": "#/components/schemas/INSTANCE_MODEL_REFERENCE"
},
{
"type": "object"
}
]
}
feedbackResponders_4db9c44d36231000134c7b8eb3800004
{
"allOf": [
{
"$ref": "#/components/schemas/feedbackResponders_ffdd5de32f7f100016dbb1b188d70000"
},
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The id for Worker Representation"
}
}
}
]
}
businessProcessParameters_4db9c44d36231000134c7a5b6f3b0000
{
"description": "Contains business process parameters for the action event instance.",
"allOf": [
{
"$ref": "#/components/schemas/businessProcessParameters_afd6ac52d6251000117be546cb060000"
},
{
"type": "object"
}
],
"x-readOnly": true
}
feedbackQuestions_ffdd5de32f7f100013a2bf94acb60000
{
"allOf": [
{
"$ref": "#/components/schemas/requestedFeedbackQuestion_ffdd5de32f7f1000144df0c21e640000"
},
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The id for Abstract Feedback Question Representation"
}
}
}
]
}
requestedFeedbackOnSelfEventDetail_19acce0101b310002e6bf03e1bbc0000
{
"allOf": [
{
"required": [
"feedbackResponders"
],
"type": "object",
"properties": {
"feedbackAbout": {
"$ref": "#/components/schemas/feedbackAbout_4db9c44d36231000134c7b8eb3800003"
},
"feedbackTemplate": {
"$ref": "#/components/schemas/feedbackTemplate_4db9c44d36231000134c7b8eb3800000"
},
"requestDate": {
"type": "string",
"description": "The date the feedback request was initiated. The value has day-level precision and is expressed in local time.",
"format": "date",
"x-workday-type": "Date",
"x-readOnly": true
},
"expirationDate": {
"type": "string",
"description": "The Date which the feedback request expires. The value has day-level precision and is expressed in local time.",
"format": "date",
"x-workday-type": "Date",
"x-conditionally-hidden": true
},
"feedbackOverallStatus": {
"type": "string",
"description": "The overall status of the requested feedback process.",
"example": "Lorem ipsum dolor sit amet, cum choro singulis consectetuer ut, ubique iisque contentiones ex duo. Quo lorem etiam eu.",
"x-workday-type": "Text",
"x-readOnly": true
},
"feedbackPrivate": {
"type": "boolean",
"description": "Indicates whether or not the feedback is private. If true, the feedback is between the feedback provider and the worker that the feedback is about. Private feedback isn't shared with managers.",
"example": true,
"x-workday-type": "Boolean",
"x-conditionally-hidden": true
},
"feedbackResponders": {
"type": "array",
"description": "The workers who've been requested to provide feedback.",
"items": {
"$ref": "#/components/schemas/feedbackResponders_4db9c44d36231000134c7b8eb3800004"
},
"x-workday-type": "Multi-instance"
},
"showFeedbackProviderName": {
"type": "boolean",
"description": "Boolean indicating to display the full display name of the worker who provided the feedback. If true, the name of the responders are displayed. If false, they remain anonymous.",
"example": true,
"x-workday-type": "Boolean",
"x-conditionally-hidden": true
},
"businessProcessParameters": {
"$ref": "#/components/schemas/businessProcessParameters_4db9c44d36231000134c7a5b6f3b0000"
},
"feedbackQuestions": {
"type": "array",
"description": "The questions workers will be responding to as part of the feedback request.",
"items": {
"$ref": "#/components/schemas/feedbackQuestions_ffdd5de32f7f100013a2bf94acb60000"
},
"x-workday-type": "Multi-instance"
},
"descriptor": {
"type": "string",
"description": "The display name of the instance",
"example": "Lorem ipsum dolor sit ame"
},
"id": {
"type": "string",
"description": "The id for Get Feedback on Self Event"
}
}
}
]
}
supervisoryOrganizationJobView_fab4a151b24810000d29746fb7e21259
{
"allOf": [
{
"type": "object",
"properties": {
"descriptor": {
"type": "string",
"description": "The display name of the instance",
"example": "Lorem ipsum dolor sit ame"
},
"id": {
"type": "string",
"description": "The id for \\~Supervisory Organization\\~ \nExample(s): Organization_Reference_ID=Sample_Value"
}
}
}
]
}
categories_4fe10913736c100038012139864e0003
{
"allOf": [
{
"$ref": "#/components/schemas/categoryDetails_4fe10913736c10003810e63ab05d0000"
},
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The id for Goal Category (Derived)"
}
}
}
]
}
cascadeGoalDetails_4fe10913736c10003773be6f2cce0000
{
"allOf": [
{
"required": [
"goalName"
],
"type": "object",
"properties": {
"editable": {
"type": "boolean",
"description": "When set to true, enables you to edit the Cascaded Goal.",
"example": true,
"x-workday-type": "Boolean"
},
"weight": {
"type": "number",
"description": "The weight for the Cascaded Goal.",
"format": "double",
"example": 99999999999.99,
"x-workday-type": "Numeric",
"x-conditionally-hidden": true
},
"description": {
"type": "string",
"description": "The description of the Cascaded Goal.",
"example": "Lorem ipsum dolor sit amet, cum choro singulis consectetuer ut, ubique iisque contentiones ex duo. Quo lorem etiam eu.",
"x-workday-type": "Rich Text",
"x-conditionally-required": true,
"x-conditionally-hidden": true
},
"categories": {
"type": "array",
"description": "The category of the Cascaded Goal.",
"items": {
"$ref": "#/components/schemas/categories_4fe10913736c100038012139864e0003"
},
"x-workday-type": "Multi-instance",
"x-conditionally-required": true,
"x-conditionally-hidden": true
},
"goalName": {
"type": "string",
"description": "The name of the Cascaded Goal.",
"example": "Lorem ipsum dolor sit amet, cum choro singulis consectetuer ut, ubique iisque contentiones ex duo. Quo lorem etiam eu.",
"x-workday-type": "Rich Text"
},
"dueDate": {
"type": "string",
"description": "The due date for the Cascaded Goal.",
"format": "date",
"x-workday-type": "Date",
"x-conditionally-required": true,
"x-conditionally-hidden": true
},
"descriptor": {
"type": "string",
"description": "The display name of the instance",
"example": "Lorem ipsum dolor sit ame"
},
"id": {
"type": "string",
"description": "The id for Cascaded Goal"
}
}
}
]
}
feedbackQuestions_2b4c8a6ca069100035b859a141200002
{
"allOf": [
{
"$ref": "#/components/schemas/requestedFeedbackQuestion_ffdd5de32f7f1000144df0c21e640000"
},
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The id for Abstract Feedback Question Representation"
}
}
}
]
}
feedbackTemplate_2b4c8a6ca069100035b859a141200001
{
"description": "The feedback templates used to obtain employee feedback.",
"allOf": [
{
"$ref": "#/components/schemas/INSTANCE_MODEL_REFERENCE"
},
{
"type": "object"
}
]
}
feedbackResponders_2b4c8a6ca069100035b859a141200000
{
"allOf": [
{
"$ref": "#/components/schemas/feedbackResponders_ffdd5de32f7f100016dbb1b188d70000"
},
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The id for Worker Representation"
}
}
}
]
}
businessProcessParameters_2b4c8a6ca069100035b85907ae2c0000
{
"description": "Contains business process parameters for the action event instance.",
"allOf": [
{
"$ref": "#/components/schemas/businessProcessParameters_afd6ac52d6251000117be546cb060000"
},
{
"type": "object"
}
],
"x-readOnly": true
}
feedbackAbout_2b4c8a6ca069100035b85907ae2c0002
{
"description": "The worker this feedback event is about.",
"allOf": [
{
"$ref": "#/components/schemas/INSTANCE_MODEL_REFERENCE"
},
{
"type": "object"
}
],
"x-readOnly": true
}
requestedFeedbackOnWorkerEventDetail_2b4c8a6ca069100035b8586e16c20000
{
"allOf": [
{
"required": [
"feedbackResponders"
],
"type": "object",
"properties": {
"feedbackQuestions": {
"type": "array",
"description": "The questions used in requested feedback events.",
"items": {
"$ref": "#/components/schemas/feedbackQuestions_2b4c8a6ca069100035b859a141200002"
},
"x-workday-type": "Multi-instance"
},
"feedbackTemplate": {
"$ref": "#/components/schemas/feedbackTemplate_2b4c8a6ca069100035b859a141200001"
},
"feedbackResponders": {
"type": "array",
"description": "The respondents who've been requested to provide feedback.",
"items": {
"$ref": "#/components/schemas/feedbackResponders_2b4c8a6ca069100035b859a141200000"
},
"x-workday-type": "Multi-instance"
},
"businessProcessParameters": {
"$ref": "#/components/schemas/businessProcessParameters_2b4c8a6ca069100035b85907ae2c0000"
},
"feedbackConfidential": {
"type": "boolean",
"description": "If true, the feedback is confidential between the feedback provider and the manager. Workers don't see confidential feedback.",
"example": true,
"x-workday-type": "Boolean",
"x-conditionally-hidden": true
},
"feedbackAbout": {
"$ref": "#/components/schemas/feedbackAbout_2b4c8a6ca069100035b85907ae2c0002"
},
"feedbackOverallStatus": {
"type": "string",
"description": "The overall status of the requested feedback process.",
"example": "Lorem ipsum dolor sit amet, cum choro singulis consectetuer ut, ubique iisque contentiones ex duo. Quo lorem etiam eu.",
"x-workday-type": "Text",
"x-readOnly": true
},
"showFeedbackProviderName": {
"type": "boolean",
"description": "If true, the name of the responders are displayed. If false, they remain anonymous.",
"example": true,
"x-workday-type": "Boolean",
"x-conditionally-hidden": true
},
"requestDate": {
"type": "string",
"description": "The date the feedback request was initiated.",
"format": "date",
"x-workday-type": "Date",
"x-readOnly": true
},
"expirationDate": {
"type": "string",
"description": "The date the feedback request expires.",
"format": "date",
"x-workday-type": "Date",
"x-conditionally-hidden": true
},
"descriptor": {
"type": "string",
"description": "The display name of the instance",
"example": "Lorem ipsum dolor sit ame"
},
"id": {
"type": "string",
"description": "The id for Get Feedback on Worker Event"
}
}
}
]
}
requestedBy_d396fd5bffec1000100f44a5808f0006
{
"description": "The worker who created the feedback request. This field is blank for anytime feedback.",
"allOf": [
{
"$ref": "#/components/schemas/INSTANCE_MODEL_REFERENCE"
},
{
"type": "object"
}
],
"x-readOnly": true
}
aboutWorker_d396fd5bffec1000100f44a5808f0005
{
"description": "The worker who is receiving the feedback.",
"allOf": [
{
"$ref": "#/components/schemas/INSTANCE_MODEL_REFERENCE"
},
{
"type": "object"
}
],
"x-readOnly": true
}
businessProcessParameters_d396fd5bffec1000100f440bde4c0001
{
"description": "Contains business process parameters for the action event instance.",
"allOf": [
{
"$ref": "#/components/schemas/businessProcessParameters_afd6ac52d6251000117be546cb060000"
},
{
"type": "object"
}
],
"x-readOnly": true
}
giveRequestedFeedbackDetails_d396fd5bffec10000e3eba1a70440000
{
"allOf": [
{
"type": "object",
"properties": {
"dueDate": {
"type": "string",
"description": "The required completion date for the business process.",
"format": "date",
"x-workday-type": "Date",
"x-readOnly": true
},
"feedbackGivenDate": {
"type": "string",
"description": "The date the feedback was provided.",
"format": "date",
"x-workday-type": "Date",
"x-readOnly": true
},
"feedbackCreationDate": {
"type": "string",
"description": "The date the feedback event was created.",
"format": "date",
"x-workday-type": "Date",
"x-readOnly": true
},
"requestedBy": {
"$ref": "#/components/schemas/requestedBy_d396fd5bffec1000100f44a5808f0006"
},
"expirationDate": {
"type": "string",
"description": "The date the feedback request expires.",
"format": "date",
"x-workday-type": "Date",
"x-readOnly": true
},
"aboutWorker": {
"$ref": "#/components/schemas/aboutWorker_d396fd5bffec1000100f44a5808f0005"
},
"feedbackComments": {
"type": "array",
"description": "The feedback comments for this feedback event. To include feedback comments in reports or notifications intended for Employees, use Feedback Comments for Self-Service Reporting instead.",
"items": {
"$ref": "#/components/schemas/feedbackComments_d396fd5bffec1000100f440bde4c0000"
},
"x-workday-type": "Multi-instance"
},
"displayNameofResponder": {
"type": "boolean",
"description": "If true, the name of the responder is displayed. If false, they remain anonymous.",
"example": true,
"x-workday-type": "Boolean",
"x-readOnly": true
},
"businessProcessParameters": {
"$ref": "#/components/schemas/businessProcessParameters_d396fd5bffec1000100f440bde4c0001"
},
"feedbackPrivate": {
"type": "boolean",
"description": "If true, the feedback is private between the feedback provider and the worker.",
"example": true,
"x-workday-type": "Boolean",
"x-conditionally-hidden": true
},
"feedbackConfidential": {
"type": "boolean",
"description": "If true, the feedback is confidential between the feedback provider and the manager. The person receiving the feedback won't see this confidential feedback.",
"example": true,
"x-workday-type": "Boolean",
"x-conditionally-hidden": true
},
"descriptor": {
"type": "string",
"description": "The display name of the instance",
"example": "Lorem ipsum dolor sit ame"
},
"id": {
"type": "string",
"description": "The id for Give Feedback Requested Event"
}
}
}
]
}
relatesToSummary_2c793e888bcd100034b42ada01b20000
{
"allOf": [
{
"type": "object",
"properties": {
"type": {
"type": "string",
"description": "The talent tag type for a goal.",
"example": "Lorem ipsum dolor sit amet, cum choro singulis consectetuer ut, ubique iisque contentiones ex duo. Quo lorem etiam eu.",
"x-workday-type": "Text"
},
"descriptor": {
"type": "string",
"description": "The display name of the instance",
"example": "Lorem ipsum dolor sit ame"
},
"id": {
"type": "string",
"description": "Workday Id or Reference Id of the instance."
}
}
}
]
}
multipleChoiceAnswers_d396fd5bffec10001393481822cd0002
{
"allOf": [
{
"$ref": "#/components/schemas/multipleChoiceAnswers_06c0300303a9100019828d5ca44a0000"
},
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The id for Question Multiple Choice Answer (Derived)"
}
}
}
]
}
relatesTo_d396fd5bffec10001393481822cd0006
{
"allOf": [
{
"$ref": "#/components/schemas/relatesTo_c836a10b43ed10000beb5b92b4c10000"
},
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The id for Talent Tag"
}
}
}
]
}
feedbackQuestion_d396fd5bffec10001393481822cd0007
{
"description": "The feedback question unique to the feedback event. Includes ad-hoc feedback questions.",
"allOf": [
{
"$ref": "#/components/schemas/INSTANCE_MODEL_REFERENCE"
},
{
"type": "object"
}
],
"x-readOnly": true
}
possibleMultipleChoiceAnswers_4c60c128c16510000a3fe85b31a80000
{
"allOf": [
{
"$ref": "#/components/schemas/possibleMultipleChoiceAnswers_4c60c128c16510000a59980041610000"
},
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The id for Question Multiple Choice Answer"
}
}
}
]
}
questionType_544916c1cd75100006c4f105d3f60000
{
"description": "The type used for the feedback question.",
"allOf": [
{
"$ref": "#/components/schemas/INSTANCE_MODEL_REFERENCE"
},
{
"type": "object"
}
],
"x-readOnly": true
}
relatesTo_c836a10b43ed10000beb5b92b4c10000
{
"allOf": [
{
"type": "object",
"properties": {
"descriptor": {
"type": "string",
"description": "The display name of the instance",
"example": "Lorem ipsum dolor sit ame"
},
"id": {
"type": "string",
"description": "Workday Id or Reference Id of the instance."
}
}
}
]
}
developmentItemReviewRepresentation_ce100f5edb15100018892f3009f80000
{
"allOf": [
{
"type": "object",
"properties": {
"descriptor": {
"type": "string",
"description": "The display name of the instance",
"example": "Lorem ipsum dolor sit ame"
},
"id": {
"type": "string",
"description": "The id for \\~Employee\\~ \\~Review\\~"
}
}
}
]
}
questionMultipleChoice_ffdd5de32f7f100016c2c1e768f40000
{
"allOf": [
{
"type": "object",
"properties": {
"descriptor": {
"type": "string",
"description": "The display name of the instance",
"example": "Lorem ipsum dolor sit ame"
},
"id": {
"type": "string",
"description": "Workday Id or Reference Id of the instance."
}
}
}
]
}
toWorker_f4946919a39f10000f03207b1f230000
{
"description": "The worker this feedback event is about.",
"allOf": [
{
"$ref": "#/components/schemas/INSTANCE_MODEL_REFERENCE"
},
{
"type": "object"
}
],
"x-readOnly": true
}
workersToNotify_afd6ac52d62510001357f92b6e800000
{
"allOf": [
{
"$ref": "#/components/schemas/workersToNotify_9e478586f65410001035b6c26a4c0000"
},
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The id for Worker Representation"
}
}
}
],
"x-workday-populated-by": {
"path": "/values/workersToNotify/workersToNotify",
"field": "id"
}
}
businessProcessParameters_afd6ac52d6251000117d0a60ed8b0000
{
"description": "The Action Event instance used with the businessProcessLinkable service representations.",
"allOf": [
{
"$ref": "#/components/schemas/businessProcessParameters_afd6ac52d6251000117be546cb060000"
},
{
"type": "object"
}
]
}
relatesTo_9d12ad407f0f10001c3949add7d40000
{
"description": "The talent tag related to the feedback response for the give feedback event.",
"allOf": [
{
"$ref": "#/components/schemas/gigOpeningTalentTag_abe398d81e1e1000167d6197a9060000"
},
{
"type": "object"
}
]
}
feedbackAlsoAbout_afd6ac52d625100011be7a838d9f0000
{
"allOf": [
{
"$ref": "#/components/schemas/getWorkersFeedbackAlsoAbout_3ab333661034100010b5635b2f7a0302"
},
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The id for Worker Representation"
}
}
}
]
}
fromWorker_afd6ac52d62510001357f891ccfd0001
{
"description": "The worker that provided the feedback. Only returned if the request asked to know the identity of the person responding.",
"allOf": [
{
"$ref": "#/components/schemas/INSTANCE_MODEL_REFERENCE"
},
{
"type": "object"
}
],
"x-readOnly": true
}
badge_afd6ac52d62510001357f891ccfd0003
{
"description": "The feedback badge included with the feedback given event to the subject.",
"allOf": [
{
"$ref": "#/components/schemas/INSTANCE_MODEL_REFERENCE"
},
{
"type": "object"
}
],
"x-conditionally-hidden": true
}
relatedFeedbackEvents_9708c966f04f10000dc9c00c839c0000
{
"allOf": [
{
"$ref": "#/components/schemas/relatedFeedbackEvents_9708c966f04f10000e1e9b7f9a5c0000"
},
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The id for Give Feedback Anytime Event"
}
}
}
]
}
feedbackEventDetail_afd6ac52d62510001086b5c85cd50000
{
"allOf": [
{
"type": "object",
"properties": {
"toWorker": {
"$ref": "#/components/schemas/toWorker_f4946919a39f10000f03207b1f230000"
},
"workersToNotify": {
"type": "array",
"description": "The workers that were selected to be notified of the feedback given event.",
"items": {
"$ref": "#/components/schemas/workersToNotify_afd6ac52d62510001357f92b6e800000"
},
"x-workday-type": "Multi-instance"
},
"businessProcessParameters": {
"$ref": "#/components/schemas/businessProcessParameters_afd6ac52d6251000117d0a60ed8b0000"
},
"relatesTo": {
"$ref": "#/components/schemas/relatesTo_9d12ad407f0f10001c3949add7d40000"
},
"feedbackAlsoAbout": {
"type": "array",
"description": "The other workers this feedback event is about.",
"items": {
"$ref": "#/components/schemas/feedbackAlsoAbout_afd6ac52d625100011be7a838d9f0000"
},
"x-workday-type": "Multi-instance"
},
"hiddenFromWorker": {
"type": "boolean",
"description": "True if the feedback event is confidential between the feedback provider and the manager. Workers don't see confidential feedback.",
"example": true,
"x-workday-type": "Boolean",
"x-conditionally-hidden": true
},
"hiddenFromManager": {
"type": "boolean",
"description": "True if the feedback event is private between the feedback provider and the worker. Private feedback isn't shared with managers.",
"example": true,
"x-workday-type": "Boolean",
"x-conditionally-hidden": true
},
"comment": {
"type": "string",
"description": "The comment text for an anytime feedback event.",
"example": "Lorem ipsum dolor sit amet, cum choro singulis consectetuer ut, ubique iisque contentiones ex duo. Quo lorem etiam eu.",
"x-workday-type": "Rich Text"
},
"fromWorker": {
"$ref": "#/components/schemas/fromWorker_afd6ac52d62510001357f891ccfd0001"
},
"badge": {
"$ref": "#/components/schemas/badge_afd6ac52d62510001357f891ccfd0003"
},
"relatedFeedbackEvents": {
"type": "array",
"description": "The anytime feedback events for the multiple recipients event.",
"items": {
"$ref": "#/components/schemas/relatedFeedbackEvents_9708c966f04f10000dc9c00c839c0000"
},
"x-workday-type": "Multi-instance",
"x-readOnly": true
},
"feedbackGivenDate": {
"type": "string",
"description": "The date the feedback was provided.",
"format": "date",
"x-workday-type": "Date"
},
"showFeedbackProviderName": {
"type": "boolean",
"description": "True if the feedback provider's name has chosen to be displayed. Names not chosen to be displayed are not shared.",
"example": true,
"x-workday-type": "Boolean",
"x-conditionally-hidden": true
},
"descriptor": {
"type": "string",
"description": "The display name of the instance",
"example": "Lorem ipsum dolor sit ame"
},
"href": {
"type": "string",
"description": "A link to the instance"
},
"id": {
"type": "string",
"description": "The id for Give Feedback Event"
}
}
}
]
}
location_b8ac205877fd10000ea91737c7da00a5
{
"description": "The location associated with the filled position or position restrictions. When associated with position restrictions, the location returned is in this order: the location on the effective job requisition, hiring restrictions, or primary location of the supervisory organization.",
"allOf": [
{
"$ref": "#/components/schemas/locationDataJobView_6d3eb084b4c410002b5fa13f0c9d0056"
},
{
"type": "object"
}
]
}
jobProfile_b8ac205877fd10000ea9174f73c500aa
{
"description": "The job profile for the position.",
"allOf": [
{
"$ref": "#/components/schemas/jobProfileJobView_fab4a151b24810000d511d61ee641262"
},
{
"type": "object"
}
]
}
workSpace_426ac445037110001b3eb91ddf6f0100
{
"description": "The work space associated with the position.",
"allOf": [
{
"$ref": "#/components/schemas/jobWorkspaceData_1005157e3d631000144205466a6c13d3"
},
{
"type": "object"
}
]
}
jobType_b8ac205877fd10000ea91752f39c00ab
{
"description": "The position's job type which can be one of the following values: Primary, Additional Job, or International Assignment. If the position is not effective, no value will be returned. Primary and additional job are effective dated due to the Switch Primary Job business process. An international assignment cannot be switched to a be a primary job.",
"allOf": [
{
"$ref": "#/components/schemas/jobTypeData_b8ac205877fd100005c3b50b74a30055"
},
{
"type": "object"
}
]
}
supervisoryOrganization_b8ac205877fd10000ea91743659800a7
{
"description": "The supervisory organization for the position.",
"allOf": [
{
"$ref": "#/components/schemas/supervisoryOrganizationJobView_fab4a151b24810000d29746fb7e21259"
},
{
"type": "object"
}
]
}
jobDataForWorker_b8ac205877fd10000ea91719a02a00a2
{
"allOf": [
{
"type": "object",
"properties": {
"location": {
"$ref": "#/components/schemas/location_b8ac205877fd10000ea91737c7da00a5"
},
"jobProfile": {
"$ref": "#/components/schemas/jobProfile_b8ac205877fd10000ea9174f73c500aa"
},
"workSpace": {
"$ref": "#/components/schemas/workSpace_426ac445037110001b3eb91ddf6f0100"
},
"businessTitle": {
"type": "string",
"description": "The business title for the position.",
"example": "Lorem ipsum dolor sit amet, cum choro singulis consectetuer ut, ubique iisque contentiones ex duo. Quo lorem etiam eu.",
"x-workday-type": "Text"
},
"jobType": {
"$ref": "#/components/schemas/jobType_b8ac205877fd10000ea91752f39c00ab"
},
"supervisoryOrganization": {
"$ref": "#/components/schemas/supervisoryOrganization_b8ac205877fd10000ea91743659800a7"
},
"descriptor": {
"type": "string",
"description": "The display name of the instance",
"example": "Lorem ipsum dolor sit ame"
},
"id": {
"type": "string",
"description": "Workday Id or Reference Id of the instance."
}
}
}
]
}
feedbackResponder_2f703c317dc910001c16504848720001
{
"description": "The person who gave the feedback (responder).",
"allOf": [
{
"$ref": "#/components/schemas/INSTANCE_MODEL_REFERENCE"
},
{
"type": "object"
}
],
"x-readOnly": true
}
feedbackResponse_2f703c317dc910001bd2de83d1590000
{
"allOf": [
{
"type": "object",
"properties": {
"feedbackResponder": {
"$ref": "#/components/schemas/feedbackResponder_2f703c317dc910001c16504848720001"
},
"response": {
"type": "string",
"description": "The feedback response for a feedback question.",
"example": "Lorem ipsum dolor sit amet, cum choro singulis consectetuer ut, ubique iisque contentiones ex duo. Quo lorem etiam eu.",
"x-workday-type": "Rich Text",
"x-readOnly": true
},
"feedbackDeclined": {
"type": "boolean",
"description": "Returns True if the responder declined to submit a response to a specific feedback question.",
"example": true,
"x-workday-type": "Boolean",
"x-readOnly": true
},
"feedbackDeclineReason": {
"type": "string",
"description": "The reason a requested feedback question was declined.",
"example": "Lorem ipsum dolor sit amet, cum choro singulis consectetuer ut, ubique iisque contentiones ex duo. Quo lorem etiam eu.",
"x-workday-type": "Text",
"x-readOnly": true
},
"descriptor": {
"type": "string",
"description": "The display name of the instance",
"example": "Lorem ipsum dolor sit ame"
},
"id": {
"type": "string",
"description": "Workday Id or Reference Id of the instance."
}
}
}
]
}
organizationDetails_4fe10913736c100026bf8b1db5a80000
{
"allOf": [
{
"type": "object",
"properties": {
"descriptor": {
"type": "string",
"description": "The display name of the instance",
"example": "Lorem ipsum dolor sit ame"
},
"id": {
"type": "string",
"description": "Workday Id or Reference Id of the instance."
}
}
}
]
}
feedbackResponders_ffdd5de32f7f100016dbb1b188d70000
{
"allOf": [
{
"type": "object",
"properties": {
"descriptor": {
"type": "string",
"description": "The display name of the instance",
"example": "Lorem ipsum dolor sit ame"
},
"id": {
"type": "string",
"description": "Workday Id or Reference Id of the instance."
}
}
}
]
}
uploadedBy_b32ff437243510000e22e06470370160
{
"description": "Returns the primary Role of the person who uploaded the Attachment.",
"allOf": [
{
"$ref": "#/components/schemas/INSTANCE_MODEL_REFERENCE"
},
{
"type": "object"
}
],
"x-readOnly": true
}
category_43b30ba735b8100011ee4781a9d50146
{
"description": "Returns the category of a Business Process Attachment.",
"allOf": [
{
"$ref": "#/components/schemas/INSTANCE_MODEL_REFERENCE"
},
{
"type": "object"
}
]
}
contentType_43b30ba735b8100011ee47993f11014a
{
"description": "Content type of the attachment",
"allOf": [
{
"$ref": "#/components/schemas/INSTANCE_MODEL_REFERENCE"
},
{
"type": "object"
}
]
}
eventAttachmentsForToolbar_43b30ba735b8100011ee4767246d0143
{
"allOf": [
{
"type": "object",
"properties": {
"uploadDate": {
"type": "string",
"description": "Returns Date the Business Process Attachment was updated.",
"format": "date",
"x-workday-type": "Date",
"x-readOnly": true
},
"fileLength": {
"type": "integer",
"description": "File length of the attachment",
"format": "int32",
"example": 99999999999,
"x-workday-type": "Numeric"
},
"fileName": {
"maxLength": 255,
"type": "string",
"description": "File name of the attachment",
"example": "Lorem ipsum dolor sit amet, cum choro singulis consectetuer ut, ubique iisque contentiones ex duo. Quo lorem etiam eu.",
"x-workday-type": "Text"
},
"uploadedBy": {
"$ref": "#/components/schemas/uploadedBy_b32ff437243510000e22e06470370160"
},
"category": {
"$ref": "#/components/schemas/category_43b30ba735b8100011ee4781a9d50146"
},
"description": {
"type": "string",
"description": "Event attachment description",
"example": "Lorem ipsum dolor sit amet, cum choro singulis consectetuer ut, ubique iisque contentiones ex duo. Quo lorem etiam eu.",
"x-workday-type": "Text"
},
"file": {
"type": "string",
"description": "For RaaS Only (Reports used as Web Services). Returns the raw Base64 data for an attachment or image.",
"format": "binary",
"x-workday-type": "File"
},
"contentType": {
"$ref": "#/components/schemas/contentType_43b30ba735b8100011ee47993f11014a"
},
"id": {
"type": "string",
"description": "Workday Id or Reference Id of the instance."
}
}
}
]
}
categorySummary_88d272af423b100036e57ea69d570000
{
"allOf": [
{
"type": "object",
"properties": {
"descriptor": {
"type": "string",
"description": "The display name of the instance",
"example": "Lorem ipsum dolor sit ame"
},
"id": {
"type": "string",
"description": "Workday Id or Reference Id of the instance."
}
}
}
]
}
attachments_5049263aaca5100020f193a8a8190009
{
"allOf": [
{
"$ref": "#/components/schemas/goalEventAttachmentsForToolbar_5049263aaca51000218bd46d6cf60000"
},
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The id for Event Attachment (Derived) \nExample(s): File_ID=Sample_Value"
}
}
}
]
}
transactionStatus_5049263aaca5100020f193a8a819000a
{
"description": "Transaction Status for Facet Search",
"allOf": [
{
"$ref": "#/components/schemas/INSTANCE_MODEL_REFERENCE"
},
{
"type": "object"
}
]
}
action_5049263aaca5100020f193a8a8190002
{
"description": "a set containing no instances",
"allOf": [
{
"$ref": "#/components/schemas/INSTANCE_MODEL_REFERENCE"
},
{
"type": "object"
}
]
}
overallBusinessProcess_5049263aaca5100020f193a8a8190004
{
"description": "Returns the Top Level (overall) Business Process that this Event is part of or returns the same instance if this Event is not a sub-process.",
"allOf": [
{
"$ref": "#/components/schemas/INSTANCE_MODEL_REFERENCE"
},
{
"type": "object"
}
],
"x-readOnly": true
}
for_5049263aaca5100020f193a8a8190005
{
"description": "The thing which this business process is about. It could be another business process if this is a sub-process",
"allOf": [
{
"$ref": "#/components/schemas/INSTANCE_MODEL_REFERENCE"
},
{
"type": "object"
}
],
"x-readOnly": true
}
goalsBusinessProcessParameters_5049263aaca5100020f193a8a8190000
{
"allOf": [
{
"required": [
"action"
],
"type": "object",
"properties": {
"warningValidations": {
"type": "string",
"description": "Warning message for an action event triggered by a condition.",
"example": "Lorem ipsum dolor sit amet, cum choro singulis consectetuer ut, ubique iisque contentiones ex duo. Quo lorem etiam eu.",
"x-workday-type": "Text",
"x-readOnly": true
},
"attachments": {
"type": "array",
"description": "Returns attachments associated with this business process that are uploaded from the toolbar and are accessible to the processing person. Returns blank if either of these conditions are not met.",
"items": {
"$ref": "#/components/schemas/attachments_5049263aaca5100020f193a8a8190009"
},
"x-workday-type": "Multi-instance"
},
"comments": {
"type": "array",
"description": "Returns the comments for the current business process.",
"items": {
"$ref": "#/components/schemas/comments_5049263aaca5100020f193a8a8190001"
},
"x-workday-type": "Multi-instance",
"x-readOnly": true
},
"transactionStatus": {
"$ref": "#/components/schemas/transactionStatus_5049263aaca5100020f193a8a819000a"
},
"criticalValidations": {
"type": "string",
"description": "Validation message for an action event triggered by a condition.",
"example": "Lorem ipsum dolor sit amet, cum choro singulis consectetuer ut, ubique iisque contentiones ex duo. Quo lorem etiam eu.",
"x-workday-type": "Text",
"x-readOnly": true
},
"overallStatus": {
"type": "string",
"description": "The current status of the business process. For example: Successfully Completed, Denied, Terminated.",
"example": "Lorem ipsum dolor sit amet, cum choro singulis consectetuer ut, ubique iisque contentiones ex duo. Quo lorem etiam eu.",
"x-workday-type": "Text",
"x-readOnly": true
},
"action": {
"$ref": "#/components/schemas/action_5049263aaca5100020f193a8a8190002"
},
"comment": {
"type": "string",
"description": "Returns a null.",
"example": "Lorem ipsum dolor sit amet, cum choro singulis consectetuer ut, ubique iisque contentiones ex duo. Quo lorem etiam eu.",
"x-workday-type": "Text"
},
"overallBusinessProcess": {
"$ref": "#/components/schemas/overallBusinessProcess_5049263aaca5100020f193a8a8190004"
},
"for": {
"$ref": "#/components/schemas/for_5049263aaca5100020f193a8a8190005"
}
}
}
]
}
countryDataForLocationData_af21e47ff7c01000092e0e4f9a22026e
{
"allOf": [
{
"type": "object",
"properties": {
"descriptor": {
"type": "string",
"description": "The display name of the instance",
"example": "Lorem ipsum dolor sit ame"
}
}
}
]
}
skillRepresentation_5e93ef5b4e3d100014e4aef5dab20000
{
"allOf": [
{
"type": "object",
"properties": {
"remoteID": {
"type": "string",
"description": "Remote ID for Skill",
"example": "Lorem ipsum dolor sit amet, cum choro singulis consectetuer ut, ubique iisque contentiones ex duo. Quo lorem etiam eu.",
"x-workday-type": "Text"
},
"descriptor": {
"type": "string",
"description": "The display name of the instance",
"example": "Lorem ipsum dolor sit ame"
},
"id": {
"type": "string",
"description": "Workday Id or Reference Id of the instance."
}
}
}
]
}
person_ab2506050c1610005d7662eaf99b0001
{
"description": "The person that made the comment for the event.",
"allOf": [
{
"$ref": "#/components/schemas/INSTANCE_MODEL_REFERENCE"
},
{
"type": "object"
}
]
}
talentTag_ffdd5de32f7f100016c88e016ad20000
{
"allOf": [
{
"type": "object",
"properties": {
"descriptor": {
"type": "string",
"description": "The display name of the instance",
"example": "Lorem ipsum dolor sit ame"
},
"id": {
"type": "string",
"description": "Workday Id or Reference Id of the instance."
}
}
}
]
}
developmentItemCategory_5e93ef5b4e3d1000148a36cbbd130000
{
"allOf": [
{
"type": "object",
"properties": {
"descriptor": {
"type": "string",
"description": "The display name of the instance",
"example": "Lorem ipsum dolor sit ame"
},
"id": {
"type": "string",
"description": "Workday Id or Reference Id of the instance."
}
}
}
]
}
multipleChoiceAnswers_06c0300303a9100019828d5ca44a0000
{
"allOf": [
{
"type": "object",
"properties": {
"descriptor": {
"type": "string",
"description": "The display name of the instance",
"example": "Lorem ipsum dolor sit ame"
},
"id": {
"type": "string",
"description": "Workday Id or Reference Id of the instance."
}
}
}
]
}
initiatives_3f682bb95bea100012bc712a6ff40000
{
"allOf": [
{
"type": "object",
"properties": {
"descriptor": {
"type": "string",
"description": "The display name of the instance",
"example": "Lorem ipsum dolor sit ame"
},
"id": {
"type": "string",
"description": "Workday Id or Reference Id of the instance."
}
}
}
]
}
workerDetails_4fe10913736c10001f8a261052450000
{
"allOf": [
{
"type": "object",
"properties": {
"descriptor": {
"type": "string",
"description": "The display name of the instance",
"example": "Lorem ipsum dolor sit ame"
},
"id": {
"type": "string",
"description": "Workday Id or Reference Id of the instance."
}
}
}
]
}
feedbackResponse_2f703c317dc9100014a86ab470a60000
{
"allOf": [
{
"$ref": "#/components/schemas/feedbackResponse_2f703c317dc910001bd2de83d1590000"
},
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The id for Feedback Response from Request"
}
}
}
]
}
questionMultipleChoiceAnswers_ffdd5de32f7f10001560ca70cc6b0000
{
"allOf": [
{
"$ref": "#/components/schemas/questionMultipleChoice_ffdd5de32f7f100016c2c1e768f40000"
},
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The id for Question Multiple Choice Answer"
}
}
}
]
}
relatesTo_cf592fbcc59e1000251b06efc29c0000
{
"allOf": [
{
"$ref": "#/components/schemas/talentTag_ffdd5de32f7f100016c88e016ad20000"
},
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The id for Talent Tag Representation"
}
}
}
]
}
questionType_ffdd5de32f7f1000144df15bb77b0001
{
"description": "The feedback question type for requested feedback events.",
"allOf": [
{
"$ref": "#/components/schemas/INSTANCE_MODEL_REFERENCE"
},
{
"type": "object"
}
],
"x-readOnly": true
}
requestedFeedbackQuestion_ffdd5de32f7f1000144df0c21e640000
{
"allOf": [
{
"type": "object",
"properties": {
"feedbackResponse": {
"type": "array",
"description": "All the feedback responses for the feedback question.",
"items": {
"$ref": "#/components/schemas/feedbackResponse_2f703c317dc9100014a86ab470a60000"
},
"x-workday-type": "Multi-instance",
"x-readOnly": true
},
"questionMultipleChoiceAnswers": {
"type": "array",
"description": "Answers for multiple choice questions in requested feedback events.",
"items": {
"$ref": "#/components/schemas/questionMultipleChoiceAnswers_ffdd5de32f7f10001560ca70cc6b0000"
},
"x-workday-type": "Multi-instance",
"x-readOnly": true
},
"relatesTo": {
"type": "array",
"description": "The talent tags that relate to feedback question or response for requested feedback events.",
"items": {
"$ref": "#/components/schemas/relatesTo_cf592fbcc59e1000251b06efc29c0000"
},
"x-workday-type": "Multi-instance",
"x-conditionally-hidden": true
},
"question": {
"type": "string",
"description": "The rich text part of a Question in a feedback request.",
"example": "Lorem ipsum dolor sit amet, cum choro singulis consectetuer ut, ubique iisque contentiones ex duo. Quo lorem etiam eu.",
"x-workday-type": "Rich Text"
},
"questionType": {
"$ref": "#/components/schemas/questionType_ffdd5de32f7f1000144df15bb77b0001"
},
"descriptor": {
"type": "string",
"description": "The display name of the instance",
"example": "Lorem ipsum dolor sit ame"
},
"id": {
"type": "string",
"description": "The id for Abstract Feedback Question"
}
}
}
]
}