action loket_get_education_by_education_id { label: "Details of a single education" description: "__Activity name :__ GetEducationByEducationId \n\nGet the details of a single education\n" provider: loket method: GET path: "/providers/employers/employees/educations/{employeeEducationId}" encoding: json input: { type: "object" properties: { Accept: { type: "string" } Authorization: { type: "string" } employeeEducationId: { type: "string" format: "uuid" } } required: ["Accept", "Authorization", "employeeEducationId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }