action payrun_get_holiday_scheme_revisions { label: "Get all holiday scheme revisions" description: "Gets links to all the holiday scheme revisions" provider: payrun method: GET path: "/Employer/{EmployerId}/HolidayScheme/{HolidaySchemeId}/Revisions" encoding: json input: { type: "object" properties: { "Api-Version": { type: "string" format: "string" } Authorization: { type: "string" format: "string" } EmployerId: { type: "string" } HolidaySchemeId: { type: "string" } } required: ["Api-Version", "Authorization", "EmployerId", "HolidaySchemeId"] additionalProperties: false } output: { type: "object" properties: { LinkCollection: { type: "object" properties: { Links: { type: "object" description: "The link collections' links" properties: { Link: { type: "array" items: { properties: { "@href": { type: "string" description: "The links' href" } "@rel": { type: "string" description: "The links' target type" } "@title": { type: "string" description: "The links' title" } } } } } } } } } } }