action payrun_get_holiday_schemes_by_effective_date { label: "Get holiday schemes from employer at a given effective date." description: "Get links to all holiday schemes for the employer on specified effective date." provider: payrun method: GET path: "/Employer/{EmployerId}/HolidaySchemes/{EffectiveDate}" encoding: json input: { type: "object" properties: { "Api-Version": { type: "string" format: "string" } Authorization: { type: "string" format: "string" } EffectiveDate: { type: "string" format: "date" } EmployerId: { type: "string" } } required: ["Api-Version", "Authorization", "EffectiveDate", "EmployerId"] 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" } } } } } } } } } } }