{"openapi":"3.1.0","info":{"title":"Happyforce API","version":"v1"},"servers":[{"url":"{url}","description":"API URL","variables":{"url":{"description":"API Environment","enum":["https://api.happyforce.com","https://staging.happyforce.com","http://localhost:9000"],"default":"https://api.happyforce.com"}}}],"tags":[{"name":"Employees","description":"Employees manage related operations"},{"name":"Segmentation","description":"Segmentation metadata related operations"},{"name":"Stats","description":"Stats related operations"},{"name":"Timesheets","description":"Timesheet related operations"},{"name":"Scores","description":"Convenience methods for retrieve the active scores of your company in Happyforce"}],"paths":{"/api/v1/integrations/mandrill":{"post":{"tags":["integrations-resource"],"operationId":"mandrillEvent","requestBody":{"content":{"*/*":{"schema":{"$ref":"#/components/schemas/MultiValueMap"}},"*":{"schema":{"$ref":"#/components/schemas/MultiValueMap"}}}},"responses":{"200":{"description":"OK"}}},"head":{"tags":["integrations-resource"],"operationId":"mandrillEvent_1","requestBody":{"content":{"*/*":{"schema":{"$ref":"#/components/schemas/MultiValueMap"}},"*":{"schema":{"$ref":"#/components/schemas/MultiValueMap"}}}},"responses":{"200":{"description":"OK"}}}},"/api/v1/public/company/employees/reset":{"put":{"tags":["Employees"],"summary":"Resets the employee profile for a given email address, allowing the employee to select a new are and profile when they log in on the app","operationId":"resetEmployee","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Employee"}},"*/*":{"schema":{"$ref":"#/components/schemas/Employee"}}},"required":true},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Employee"}},"*/*":{"schema":{"$ref":"#/components/schemas/Employee"}}}}},"security":[{"happyforceAPIKey":[]}]}},"/api/v1/public/company/employees/externalid/{externalId}":{"get":{"tags":["Employees"],"summary":"Retrieves an employee by external id","operationId":"getEmployeeByExternalId","parameters":[{"name":"externalId","in":"path","description":"The externalId of the employee you want to retrieve","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Employee"}}}}},"security":[{"happyforceAPIKey":[]}]},"put":{"tags":["Employees"],"summary":"Updates an employee for a given external id","operationId":"updateEmployeeByExternalId","parameters":[{"name":"externalId","in":"path","description":"The externalId of the employee you wish to update","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"*/*":{"schema":{"$ref":"#/components/schemas/Employee"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Employee"}}}}},"security":[{"happyforceAPIKey":[]}]},"delete":{"tags":["Employees"],"summary":"Deletes an employee for a given external id","operationId":"deleteEmployeeByExternalId","parameters":[{"name":"externalId","in":"path","description":"The externalId of the employee you wish to delete","required":true,"schema":{"type":"string"}},{"name":"turnoverDate","in":"query","description":"The turnover date of the employee (ddMMyyyy format)","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"turnoverType","in":"query","description":"The type of turnover: Voluntary or involuntary","required":false,"schema":{"type":"string","enum":["VOLUNTARY","INVOLUNTARY","OTHER"]}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}},"security":[{"happyforceAPIKey":[]}]}},"/api/v1/public/company/employees/email/{employeeEmail}":{"get":{"tags":["Employees"],"summary":"Retrieves an employee by email","operationId":"getEmployeeByEmail","parameters":[{"name":"employeeEmail","in":"path","description":"The email of the employee you want to retrieve","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Employee"}}}}},"security":[{"happyforceAPIKey":[]}]},"put":{"tags":["Employees"],"summary":"Updates an employee for a given email address","operationId":"updateEmployeeByEmail","parameters":[{"name":"employeeEmail","in":"path","description":"The email of the employee you wish to update","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"*/*":{"schema":{"$ref":"#/components/schemas/Employee"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Employee"}}}}},"security":[{"happyforceAPIKey":[]}]},"delete":{"tags":["Employees"],"summary":"Deletes an employee for a given email address","operationId":"deleteEmployeeByEmail","parameters":[{"name":"employeeEmail","in":"path","description":"The email of the employee you wish to delete","required":true,"schema":{"type":"string"}},{"name":"turnoverDate","in":"query","description":"The turnover date of the employee (ddMMyyyy format)","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"turnoverType","in":"query","description":"The type of turnover: Voluntary or involuntary","required":false,"schema":{"type":"string","enum":["VOLUNTARY","INVOLUNTARY","OTHER"]}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}},"security":[{"happyforceAPIKey":[]}]}},"/api/v1/internal/auth/oauth":{"put":{"tags":["external-auth-resource"],"operationId":"setExternalAuthorization","requestBody":{"content":{"*/*":{"schema":{"$ref":"#/components/schemas/ExternalAuthRequestDTO"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ExternalAuthResponseDTO"}}}}}}},"/api/v1/employee/timesheet/{timesheetId}":{"put":{"tags":["Timesheet"],"description":"Update a timesheet record","operationId":"updateTimesheet","parameters":[{"name":"timesheetId","in":"path","description":"Timesheet ID","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TimesheetUpdateRequestDTO"}}},"required":true},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PersonTimesheetDTO"}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/conversations/{employeeId}/{conversationId}":{"get":{"tags":["Conversations"],"description":"Get's a conversation","operationId":"getConversations","parameters":[{"name":"conversationId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ConversationDTO"}}}}},"security":[{"employeeAPISessionId":[]}]},"put":{"tags":["Conversations"],"description":"Set's the conversation as seen","operationId":"setConversationSeen","parameters":[{"name":"conversationId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ConversationDTO"}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/company/user/info":{"put":{"tags":["user-profile-resource"],"operationId":"updateUserProfile","requestBody":{"content":{"*/*":{"schema":{"$ref":"#/components/schemas/UserSelfProfileUpdateDTO"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/LoginResponse"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/user/filters/{id}":{"put":{"tags":["user-profile-resource"],"operationId":"updateComparisonFilter","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"requestBody":{"content":{"*/*":{"schema":{"$ref":"#/components/schemas/UserComparisonFilterDTO"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/UserComparisonFilterDTO"}}}}},"security":[{"companyAPISessionId":[]}]},"delete":{"tags":["user-profile-resource"],"operationId":"deleteComparisonFilter","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/UserComparisonFilterDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/timesheet/{timesheetId}":{"put":{"tags":["Company Timesheet"],"summary":"Update a timesheet record","description":"Updates an existing timesheet record by ID. Only provided fields will be updated.","operationId":"updateTimesheet_1","parameters":[{"name":"timesheetId","in":"path","description":"Timesheet ID","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TimesheetUpdateRequestDTO"}}},"required":true},"responses":{"200":{"description":"Timesheet updated successfully","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PersonTimesheetDTO"}}}},"404":{"description":"Timesheet not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PersonTimesheetDTO"}}}},"400":{"description":"Invalid request data","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PersonTimesheetDTO"}}}}}},"delete":{"tags":["Company Timesheet"],"summary":"Delete a timesheet record","description":"Deletes an existing timesheet record by ID. The deleted record is archived in the DeletedTimesheets collection.","operationId":"deleteTimesheet","parameters":[{"name":"timesheetId","in":"path","description":"Timesheet ID","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TimesheetDeleteRequestDTO"}}},"required":true},"responses":{"200":{"description":"Timesheet deleted successfully"},"404":{"description":"Timesheet not found"}}}},"/api/v1/company/terms/{termsId}":{"put":{"tags":["company-terms-and-conditions-resource"],"operationId":"updateTermsAndConditions","parameters":[{"name":"termsId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"requestBody":{"content":{"*/*":{"schema":{"$ref":"#/components/schemas/CompanyTermsAndConditionsDTO"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/CompanyTermsAndConditionsDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/surveys/{surveyId}":{"get":{"tags":["survey-resource"],"operationId":"getSurvey","parameters":[{"name":"surveyId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SurveyDTO"}}}}},"security":[{"companyAPISessionId":[]}]},"put":{"tags":["survey-resource"],"operationId":"updateSurveyTemplate","parameters":[{"name":"surveyId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"requestBody":{"content":{"*/*":{"schema":{"$ref":"#/components/schemas/SurveyDTO"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SurveyDTO"}}}}},"security":[{"companyAPISessionId":[]}]},"delete":{"tags":["survey-resource"],"operationId":"removeSurvey","parameters":[{"name":"surveyId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SurveyDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/surveys/{surveyId}/plan":{"get":{"tags":["survey-resource"],"operationId":"getSurveyPlan","parameters":[{"name":"surveyId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"from","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"query","required":false,"schema":{"type":"string","format":"date-time"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/SurveyRoundDTO"}}}}}},"security":[{"companyAPISessionId":[]}]},"put":{"tags":["survey-resource"],"operationId":"setSurveyPlan","parameters":[{"name":"surveyId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"requestBody":{"content":{"*/*":{"schema":{"$ref":"#/components/schemas/SurveySchedulePlanDTO"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SurveyDTO"}}}}},"security":[{"companyAPISessionId":[]}]},"delete":{"tags":["survey-resource"],"operationId":"removeSurveyPlan","parameters":[{"name":"surveyId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SurveyDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/shift/{shiftId}":{"put":{"tags":["Company Shift"],"summary":"Update a shift record","description":"Updates an existing shift record by ID. Only provided fields will be updated.","operationId":"updateShift","parameters":[{"name":"shiftId","in":"path","description":"Shift ID","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShiftUpdateRequestDTO"}}},"required":true},"responses":{"200":{"description":"Shift updated successfully"},"404":{"description":"Shift not found"},"400":{"description":"Invalid request data"}}}},"/api/v1/company/scores/{scoreId}/deactivate":{"put":{"tags":["scores-resource"],"operationId":"deactivateScore","parameters":[{"name":"scoreId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ScoreDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/scores/{scoreId}/activate":{"put":{"tags":["scores-resource"],"operationId":"activateScore","parameters":[{"name":"scoreId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ScoreDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/questions/{questionId}":{"get":{"tags":["questions-resource"],"operationId":"getQuestion","parameters":[{"name":"questionId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/QuestionDTO"}}}}},"security":[{"companyAPISessionId":[]}]},"put":{"tags":["questions-resource"],"operationId":"updateQuestion","parameters":[{"name":"questionId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"requestBody":{"content":{"*/*":{"schema":{"$ref":"#/components/schemas/QuestionDTO"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/QuestionDTO"}}}}},"security":[{"companyAPISessionId":[]}]},"delete":{"tags":["questions-resource"],"operationId":"deleteQuestion","parameters":[{"name":"questionId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/QuestionDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/questions/{questionId}/archive":{"put":{"tags":["questions-resource"],"operationId":"archiveQuestion","parameters":[{"name":"questionId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/QuestionDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/questions/{questionId}/active/{active}":{"put":{"tags":["questions-resource"],"operationId":"pauseOrResumeQuestion","parameters":[{"name":"questionId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"active","in":"path","required":true,"schema":{"type":"boolean"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/QuestionDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/people":{"get":{"tags":["people-resource"],"operationId":"getPerson","parameters":[{"name":"id","in":"query","required":false,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"email","in":"query","required":false,"schema":{"type":"string"}},{"name":"externalId","in":"query","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PersonDTO"}}}}},"security":[{"companyAPISessionId":[]}]},"put":{"tags":["people-resource"],"operationId":"updatePerson","requestBody":{"content":{"*/*":{"schema":{"$ref":"#/components/schemas/PersonDTO"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PersonDTO"}}}}},"security":[{"companyAPISessionId":[]}]},"post":{"tags":["people-resource"],"operationId":"invitePerson","requestBody":{"content":{"*/*":{"schema":{"$ref":"#/components/schemas/PersonDTO"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PersonDTO"}}}}},"security":[{"companyAPISessionId":[]}]},"delete":{"tags":["people-resource"],"operationId":"deletePerson","parameters":[{"name":"id","in":"query","required":false,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"email","in":"query","required":false,"schema":{"type":"string"}},{"name":"turnoverDate","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"turnoverType","in":"query","required":false,"schema":{"type":"string","enum":["VOLUNTARY","INVOLUNTARY","OTHER"]}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PersonDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/milestone/{id}":{"put":{"tags":["milestone-resource"],"operationId":"updateMilestone","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"requestBody":{"content":{"*/*":{"schema":{"$ref":"#/components/schemas/MilestoneDTO"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/MilestoneDTO"}}}}},"security":[{"companyAPISessionId":[]}]},"delete":{"tags":["milestone-resource"],"operationId":"deleteMilestone","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/MilestoneDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/hierarchy/{hierarchyId}":{"get":{"tags":["hierarchy-resource"],"operationId":"getHierarchy","parameters":[{"name":"hierarchyId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/CompanyHierarchyDTO"}}}}},"security":[{"companyAPISessionId":[]}]},"put":{"tags":["hierarchy-resource"],"operationId":"updateHierarchy","parameters":[{"name":"hierarchyId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"requestBody":{"content":{"*/*":{"schema":{"$ref":"#/components/schemas/CompanyHierarchyDTO"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/CompanyHierarchyDTO"}}}}}},"security":[{"companyAPISessionId":[]}]},"delete":{"tags":["hierarchy-resource"],"operationId":"deleteHierarchy","parameters":[{"name":"hierarchyId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/CompanyHierarchyDTO"}}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/hierarchy/silos/{siloId}":{"get":{"tags":["hierarchy-silos-resource"],"operationId":"getSilo","parameters":[{"name":"siloId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/HierarchySiloDTO"}}}}},"security":[{"companyAPISessionId":[]}]},"put":{"tags":["hierarchy-silos-resource"],"operationId":"updateSilo","parameters":[{"name":"siloId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"requestBody":{"content":{"*/*":{"schema":{"$ref":"#/components/schemas/HierarchySiloDTO"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/HierarchySiloDTO"}}}}},"security":[{"companyAPISessionId":[]}]},"delete":{"tags":["hierarchy-silos-resource"],"operationId":"deleteSilo","parameters":[{"name":"siloId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/HierarchySiloDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/hi":{"get":{"tags":["hi-question-resource"],"operationId":"getHIQuestion","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/QuestionDTO"}}}}},"security":[{"companyAPISessionId":[]}]},"put":{"tags":["hi-question-resource"],"operationId":"updateHIQuestion","requestBody":{"content":{"*/*":{"schema":{"$ref":"#/components/schemas/QuestionDTO"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/QuestionDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/feedback/containers/{containerId}":{"get":{"tags":["feedback-containers-resource"],"operationId":"getFeedbackContainer","parameters":[{"name":"containerId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"oneOf":[{"$ref":"#/components/schemas/FeedbackIdeaInitiativeContainerDTO"}]}}}}},"security":[{"companyAPISessionId":[]}]},"put":{"tags":["feedback-containers-resource"],"operationId":"updateFeedbackContainer","parameters":[{"name":"containerId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"requestBody":{"content":{"*/*":{"schema":{"oneOf":[{"$ref":"#/components/schemas/FeedbackIdeaInitiativeContainerDTO"}]}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"oneOf":[{"$ref":"#/components/schemas/FeedbackIdeaInitiativeContainerDTO"}]}}}}},"security":[{"companyAPISessionId":[]}]},"delete":{"tags":["feedback-containers-resource"],"operationId":"deletetFeedbackContainer","parameters":[{"name":"containerId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK"}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/feedback/configuration/status/{statusId}":{"put":{"tags":["feedback-configuration-status-type-resource"],"operationId":"updateFeedbackStatusType","parameters":[{"name":"statusId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"requestBody":{"content":{"*/*":{"schema":{"$ref":"#/components/schemas/FeedbackStatusType"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/FeedbackStatusType"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/feedback/announcements/{announcementId}/inappropriate/{commentId}":{"put":{"tags":["announcements-feedback-resource"],"operationId":"companyUserMarkInappropiateAnnouncementComment","parameters":[{"name":"announcementId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"commentId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"requestBody":{"content":{"*/*":{"schema":{"$ref":"#/components/schemas/CompanyCommentInappropriateRequest"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/AnnouncementFeedbackCommentDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/employees/groups/{groupId}":{"get":{"tags":["groups-resource"],"operationId":"getGroup","parameters":[{"name":"groupId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"active","in":"query","required":false,"schema":{"type":"boolean","default":true}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/EmployeeGroupDTO"}}}}},"security":[{"companyAPISessionId":[]}]},"put":{"tags":["groups-resource"],"operationId":"updateGroup","parameters":[{"name":"groupId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"requestBody":{"content":{"*/*":{"schema":{"$ref":"#/components/schemas/EmployeeGroupDTO"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/EmployeeGroupDTO"}}}}},"security":[{"companyAPISessionId":[]}]},"delete":{"tags":["groups-resource"],"operationId":"deleteGroup","parameters":[{"name":"groupId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/EmployeeGroupDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/culture/values/{valueId}":{"put":{"tags":["company-culture-values-resource"],"operationId":"updateCompanyCultureValue","parameters":[{"name":"valueId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"requestBody":{"content":{"*/*":{"schema":{"$ref":"#/components/schemas/CompanyCultureValueUpdateRequestDTO"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/CompanyCultureValueDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/conversations/{conversationId}":{"get":{"tags":["conversations-resource"],"operationId":"getConversation","parameters":[{"name":"conversationId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ConversationDTO"}}}}},"security":[{"companyAPISessionId":[]}]},"put":{"tags":["conversations-resource"],"operationId":"setConversationSeen_1","parameters":[{"name":"conversationId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ConversationDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/comments/tags/{commentId}/{tag}":{"put":{"tags":["comments-tags-resource"],"operationId":"addTag","parameters":[{"name":"commentId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"tag","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/BaseCommentDTO"}}}}},"security":[{"companyAPISessionId":[]}]},"delete":{"tags":["comments-tags-resource"],"operationId":"removeTag","parameters":[{"name":"commentId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"tag","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/BaseCommentDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/comments/status/{commentId}/{statusId}":{"put":{"tags":["comments-status-resource"],"operationId":"addStatus","parameters":[{"name":"commentId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"statusId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/BaseCommentDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/comments/mark/{commentId}/relevant/{relevant}":{"put":{"tags":["comments-resource"],"operationId":"addHRRelevantClassificationToComment","parameters":[{"name":"commentId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"relevant","in":"path","required":true,"schema":{"type":"boolean"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/BaseCommentDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/comments/mark/{commentId}/privated/{privated}":{"put":{"tags":["comments-resource"],"operationId":"changePrivatedCommentStatus","parameters":[{"name":"commentId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"privated","in":"path","required":true,"schema":{"type":"boolean"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/BaseCommentDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/comments/inappropriate/{commentId}":{"put":{"tags":["comments-resource"],"operationId":"companyUserMarkInappropiateCommentReply","parameters":[{"name":"commentId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"requestBody":{"content":{"*/*":{"schema":{"$ref":"#/components/schemas/CompanyCommentInappropriateRequest"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/BaseCommentDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/comments/inappropriate/{commentId}/{replyId}":{"put":{"tags":["comments-resource"],"operationId":"companyUserMarkInappropiateCommentReply_1","parameters":[{"name":"commentId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"replyId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"requestBody":{"content":{"*/*":{"schema":{"$ref":"#/components/schemas/CompanyCommentInappropriateRequest"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/BaseCommentDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/comments/container/{commentId}/{containerId}":{"put":{"tags":["comments-container-resource"],"operationId":"setContainer","parameters":[{"name":"commentId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"containerId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/BaseCommentDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/characteristics/{characteristicId}":{"get":{"tags":["characteristics-resource"],"operationId":"getCharacteristic","parameters":[{"name":"characteristicId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"oneOf":[{"$ref":"#/components/schemas/SegmentDateDTO"},{"$ref":"#/components/schemas/SegmentListDTO"}]}}}}},"security":[{"companyAPISessionId":[]}]},"put":{"tags":["characteristics-resource"],"operationId":"updateCompanyCharacteristics","parameters":[{"name":"characteristicId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"requestBody":{"content":{"*/*":{"schema":{"oneOf":[{"$ref":"#/components/schemas/SegmentDateDTO"},{"$ref":"#/components/schemas/SegmentListDTO"}]}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"oneOf":[{"$ref":"#/components/schemas/SegmentDateDTO"},{"$ref":"#/components/schemas/SegmentListDTO"}]}}}}},"security":[{"companyAPISessionId":[]}]},"delete":{"tags":["characteristics-resource"],"operationId":"deleteCompanyCharacteristics","parameters":[{"name":"characteristicId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"oneOf":[{"$ref":"#/components/schemas/SegmentDateDTO"},{"$ref":"#/components/schemas/SegmentListDTO"}]}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/announcements/{announcementId}":{"put":{"tags":["announcements-resource"],"operationId":"updateCompanyAnnouncement","parameters":[{"name":"announcementId","in":"path","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"*/*":{"schema":{"oneOf":[{"$ref":"#/components/schemas/LifeEventAnnouncementCreateUpdateRequestDTO"}]}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/AnnouncementExternalDTO"}}}}},"security":[{"companyAPISessionId":[]}]},"delete":{"tags":["announcements-resource"],"operationId":"deleteCompanyAnnouncement","parameters":[{"name":"announcementId","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/AnnouncementExternalDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/announcements/configuration":{"get":{"tags":["announcements-configuration-resource"],"operationId":"getAnnouncementsConfiguration","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/AnnouncementsConfigurationDTO"}}}}},"security":[{"companyAPISessionId":[]}]},"put":{"tags":["announcements-configuration-resource"],"operationId":"updateAnnouncementsConfiguration","requestBody":{"content":{"*/*":{"schema":{"$ref":"#/components/schemas/AnnouncementsConfigurationDTO"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/AnnouncementsConfigurationDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/announcements/categories/{categoryId}":{"put":{"tags":["announcements-categories-resource"],"operationId":"updateAnnouncementCategory","parameters":[{"name":"categoryId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"requestBody":{"content":{"*/*":{"schema":{"$ref":"#/components/schemas/AnnouncementCategoryDTO"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/AnnouncementCategoryDTO"}}}}},"security":[{"companyAPISessionId":[]}]},"delete":{"tags":["announcements-categories-resource"],"operationId":"deleteAnnouncementCategory","parameters":[{"name":"categoryId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/AnnouncementCategoryDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/advisor/surveys/templates/{templateId}":{"get":{"tags":["advisors-survey-resource"],"operationId":"getSurveyTemplate","parameters":[{"name":"templateId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SurveyTemplateDTO"}}}}},"security":[{"companyAPISessionId":[]}]},"put":{"tags":["advisors-survey-resource"],"operationId":"updateSurveyTemplates","parameters":[{"name":"templateId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"requestBody":{"content":{"*/*":{"schema":{"$ref":"#/components/schemas/SurveyTemplateDTO"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SurveyTemplateDTO"}}}}},"security":[{"companyAPISessionId":[]}]},"delete":{"tags":["advisors-survey-resource"],"operationId":"deleteSurveyTemplate","parameters":[{"name":"templateId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SurveyTemplateCategoryDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/advisor/surveys/categories/{categoryId}":{"put":{"tags":["advisors-survey-resource"],"operationId":"updateSurveyCategoryTemplates","parameters":[{"name":"categoryId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"requestBody":{"content":{"*/*":{"schema":{"$ref":"#/components/schemas/SurveyTemplateCategoryDTO"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SurveyTemplateCategoryDTO"}}}}},"security":[{"companyAPISessionId":[]}]},"delete":{"tags":["advisors-survey-resource"],"operationId":"deleteSurveyCategoryTemplates","parameters":[{"name":"categoryId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SurveyTemplateCategoryDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/public/company/employees/invite":{"post":{"tags":["Employees"],"summary":"Invite an employee","operationId":"inviteEmployee","requestBody":{"content":{"*/*":{"schema":{"$ref":"#/components/schemas/Employee"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Employee"}}}}},"security":[{"happyforceAPIKey":[]}]}},"/api/v1/employee/vote/{employeeId}":{"get":{"tags":["Vote"],"description":"Get the vote results","operationId":"getVoteResults","responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/BaseStatsResultDTO"}}}}}},"deprecated":true,"security":[{"employeeAPISessionId":[]}]},"post":{"tags":["Vote"],"description":"Performs an employee vote, and return the results","operationId":"employeeVote","requestBody":{"content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/EmployeeVote"}}}},"required":true},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/VoteResult"}}}}},"security":[{"employeeAPISessionId":[]}]},"delete":{"tags":["Vote"],"description":"Delete the vote results of the current day","operationId":"resetTodayVoteResults","responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/BaseStatsResultDTO"}}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/vote/{employeeId}/verify":{"post":{"tags":["Vote"],"description":"Checks a reply for moderation before posting","operationId":"verifySurveyComment","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EmployeeVote"}}},"required":true},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/FeedbackVerificationResultDTO"}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/unsubscribe":{"post":{"tags":["Login"],"description":"Sends to the employee a new company code","operationId":"unsubscribEmployee","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EmployeeMailUnsubscribeRequest"}}},"required":true},"responses":{"200":{"description":"OK"}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/unregister":{"post":{"tags":["Login"],"description":"Disassociates a session from the employee, usually called from a device on 'logout' flow","operationId":"unregister","responses":{"200":{"description":"OK"}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/timesheet/{employeeId}/start":{"post":{"tags":["Timesheet"],"description":"Start work time for an employee","operationId":"startWorkTime","parameters":[{"name":"employeeId","in":"path","description":"Employee ID","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TimesheetDateTimeRequestDTO"}}},"required":true},"responses":{"200":{"description":"OK"}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/timesheet/{employeeId}/end":{"post":{"tags":["Timesheet"],"description":"End work time for an employee","operationId":"endWorkTime","parameters":[{"name":"employeeId","in":"path","description":"Employee ID","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TimesheetDateTimeRequestDTO"}}},"required":true},"responses":{"200":{"description":"OK"}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/timesheet/{employeeId}/break/start":{"post":{"tags":["Timesheet"],"description":"Start break time for an employee","operationId":"startBreak","parameters":[{"name":"employeeId","in":"path","description":"Employee ID","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TimesheetDateTimeRequestDTO"}}},"required":true},"responses":{"200":{"description":"OK"}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/timesheet/{employeeId}/break/end":{"post":{"tags":["Timesheet"],"description":"End break time for an employee","operationId":"endBreak","parameters":[{"name":"employeeId","in":"path","description":"Employee ID","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TimesheetDateTimeRequestDTO"}}},"required":true},"responses":{"200":{"description":"OK"}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/terms/accept":{"post":{"tags":["Terms and Conditions"],"description":"Accepts terms and conditions by providing a list of term IDs","operationId":"acceptTerms","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TermsAcceptanceRequest"}}},"required":true},"responses":{"200":{"description":"OK"}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/surveys/{employeeId}/survey/{surveyRoundId}":{"get":{"tags":["Surveys"],"description":"Get's pending survey status for a given employee","operationId":"getSurvey_1","parameters":[{"name":"surveyRoundId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SurveyDTO"}}}}},"security":[{"employeeAPISessionId":[]}]},"post":{"tags":["Surveys"],"description":"Post a survey answer status for a given employee","operationId":"postSurveyAnswer","parameters":[{"name":"surveyRoundId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EmployeeVote"}}},"required":true},"responses":{"200":{"description":"OK"}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/surveys/{employeeId}/survey/{surveyRoundId}/verify":{"post":{"tags":["Surveys"],"description":"Checks a reply for moderation before posting","operationId":"verifySurveyComment_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EmployeeVote"}}},"required":true},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/FeedbackVerificationResultDTO"}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/sendAccessLink":{"post":{"tags":["Login"],"description":"Sends to the employee an access link","operationId":"sendAccessLink","responses":{"200":{"description":"OK"}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/resend/{email}":{"post":{"tags":["Login"],"description":"Sends to the employee a new company code","operationId":"resendEmployeeInvitation","parameters":[{"name":"email","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK"}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/remind":{"post":{"tags":["Login"],"description":"Sends to the employee a new company code","operationId":"resendEmployeeInvitation_1","responses":{"200":{"description":"OK"}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/register":{"post":{"tags":["Login"],"description":"Register the employee with a company code for a device","operationId":"register","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AbstractEmployeeRegistrationRequest"}}},"required":true},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EmployeeRegistrationResponse"}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/notifications/{employeeId}/viewed/{notificationId}":{"post":{"tags":["Notifications"],"description":"Mark a notification as seen","operationId":"updateViewedEmployeeNotification","parameters":[{"name":"notificationId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EmployeeNotificationDTO"}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/notifications/{employeeId}/count/reset":{"post":{"tags":["Notifications"],"description":"Resets the number of new notifications","operationId":"resetNotificationsCount","responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EmployeeNotificationCountDTO"}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/me/{employeeId}/report/{reportId}/{reaction}":{"post":{"tags":["Me Personal Report"],"description":"React to a report","operationId":"markReportReaction","parameters":[{"name":"reportId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"reaction","in":"path","required":true,"schema":{"$ref":"#/components/schemas/ReportReaction"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/MePersonalReportDTO"}}}}},"deprecated":true,"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/me/{employeeId}/report/{reportId}/seen":{"post":{"tags":["Me Personal Report"],"description":"Set's the report as seen","operationId":"markReportAsSeen","parameters":[{"name":"reportId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/MePersonalReportDTO"}}}}},"deprecated":true,"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/login":{"post":{"tags":["Login"],"description":"Sends a live updateTopic of employee info and gets the Employee data","operationId":"login","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EmployeeLoginRequest"}}},"required":true},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EmployeeLoginResponse"}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/invitation/{email}":{"post":{"tags":["Login"],"description":"Allows employees to self invite","operationId":"autoInviteEmployee","parameters":[{"name":"email","in":"path","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EmployeeAutoInviteRequest"}}}},"responses":{"200":{"description":"OK"}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/feedback/{employeeId}":{"post":{"tags":["Feedback"],"description":"Post Employee Feedback","operationId":"postFeedback","requestBody":{"content":{"application/json":{"schema":{"description":"Feedback message to be posted by the logged employee","oneOf":[{"$ref":"#/components/schemas/RecognitionFeedbackDTO"},{"$ref":"#/components/schemas/SomethingIsWrongFeedbackDTO"},{"$ref":"#/components/schemas/StandardFeedbackDTO"},{"$ref":"#/components/schemas/SuggestionFeedbackDTO"}]}}},"required":true},"responses":{"200":{"description":"OK"}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/feedback/{employeeId}/verify":{"post":{"tags":["Feedback Verification"],"description":"Verifies an Employee Feedback before publishing","operationId":"verifyFeedback","requestBody":{"content":{"application/json":{"schema":{"description":"Feedback message to be verified by the logged employee","oneOf":[{"$ref":"#/components/schemas/RecognitionFeedbackDTO"},{"$ref":"#/components/schemas/SomethingIsWrongFeedbackDTO"},{"$ref":"#/components/schemas/StandardFeedbackDTO"},{"$ref":"#/components/schemas/SuggestionFeedbackDTO"}]}}},"required":true},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/FeedbackVerificationResultDTO"}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/conversations/{employeeId}/message/{contextId}":{"post":{"tags":["Conversations"],"description":"Posts a message to a conversation","operationId":"postMessage","parameters":[{"name":"contextId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ConversationMessageDTO"}}},"required":true},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ConversationDTO"}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/configuration/{employeeId}":{"post":{"tags":["Configuration"],"description":"Sets the configuration of an employee. ","operationId":"configureEmployee","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EmployeeParticipationProfileConfigureRequest"}}},"required":true},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EmployeeLoginResponse"}}}}},"security":[{"employeeAPISessionId":[]}]},"delete":{"tags":["Configuration"],"description":"Resets the configuration of an employee. ","operationId":"resetEmployeeConfig","responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EmployeeLoginResponse"}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/configuration/{employeeId}/settings":{"post":{"tags":["Configuration"],"description":"Get's the  employees current personal configuration.  ","operationId":"setEmployeePersonalConfiguration","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PersonalConfigurationDTO"}}},"required":true},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PersonalConfigurationDTO"}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/comments/{employeeId}":{"get":{"tags":["Comments"],"description":"Lists the comments visible by an employee","operationId":"getEmployeeCommentsForQuestion","parameters":[{"name":"questionId","in":"query","required":false,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"from","in":"query","required":false,"schema":{"type":"integer","format":"int32","default":0}},{"name":"to","in":"query","required":false,"schema":{"type":"integer","format":"int32","default":10}},{"name":"pending","in":"query","required":false,"schema":{"type":"boolean","default":false}},{"name":"commentText","in":"query","required":false,"schema":{"type":"string"}},{"name":"wallId","in":"query","required":false,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"containerId","in":"query","required":false,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/QuestionCommentsDTO"}}}}},"security":[{"employeeAPISessionId":[]}]},"post":{"tags":["Comments"],"description":"Add an After-vote comment","operationId":"addEmployeeComment","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EmployeeCommentRequestDTO"}}},"required":true},"responses":{"200":{"description":"OK"}},"security":[{"employeeAPISessionId":[]}]},"delete":{"tags":["Comments"],"description":"Delete the comment results of the current day","operationId":"resetTodayVoteResults_1","responses":{"200":{"description":"OK"}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/comments/{employeeId}/{commentId}/reply":{"post":{"tags":["Comments"],"description":"Add a comment reply","operationId":"addEmployeeCommentReply","parameters":[{"name":"commentId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EmployeeCommentReplyRequestDTO"}}},"required":true},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EmployeeCommentDTO"}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/comments/{employeeId}/{commentId}/reply/verify":{"post":{"tags":["Comments"],"description":"Checks a reply for moderation before posting","operationId":"verifyEmployeeCommentReply","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EmployeeCommentReplyRequestDTO"}}},"required":true},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/FeedbackVerificationResultDTO"}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/comments/{employeeId}/seen":{"post":{"tags":["Comment Reactions"],"description":"Marks the comments as disliked by a employee","operationId":"employeeSeeComment","requestBody":{"content":{"application/json":{"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}}},"required":true},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/EmployeeCommentDTO"}}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/comments/{employeeId}/likes/{commentId}":{"post":{"tags":["Comment Reactions"],"description":"Marks the comments as liked by a employee","operationId":"employeeLikeComment","parameters":[{"name":"commentId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EmployeeCommentDTO"}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/comments/{employeeId}/likes/{commentId}/{replyId}":{"post":{"tags":["Comment Reactions"],"description":"Marks the a comment reply as liked by a employee","operationId":"employeeLikeCommentReply","parameters":[{"name":"commentId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"replyId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EmployeeCommentDTO"}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/comments/{employeeId}/inappropriate/{commentId}":{"post":{"tags":["Comment Reactions"],"description":"Marks the comments as inappropriate by a employee","operationId":"employeeMarkInappropiateComment","parameters":[{"name":"commentId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EmployeeCommentInappropiateRequest"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EmployeeCommentDTO"}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/comments/{employeeId}/inappropriate/{commentId}/{replyId}":{"post":{"tags":["Comment Reactions"],"description":"Marks the comments as inappropriate by a employee","operationId":"employeeMarkInappropiateCommentReply","parameters":[{"name":"commentId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"replyId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EmployeeCommentInappropiateRequest"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EmployeeCommentDTO"}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/comments/{employeeId}/dislikes/{commentId}":{"post":{"tags":["Comment Reactions"],"description":"Marks the comments as disliked by a employee","operationId":"employeeDislikeComment","parameters":[{"name":"commentId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EmployeeCommentDTO"}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/comments/{employeeId}/dislikes/{commentId}/{replyId}":{"post":{"tags":["Comment Reactions"],"description":"Marks the comments as disliked by a employee","operationId":"employeeDislikeCommentReply","parameters":[{"name":"commentId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"replyId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EmployeeCommentDTO"}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/check/{emailOrId}":{"post":{"tags":["Login"],"description":"Checks if the following mail exists on Happyforce","operationId":"checkMail","parameters":[{"name":"emailOrId","in":"path","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EmployeeCheckUserRequest"}}},"required":true},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EmployeeCheckUserResponse"}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/announcements/{employeeId}":{"get":{"tags":["Announcements"],"description":"Lists all the announcement headers visible by an employee matching some search params","operationId":"searchAnnouncementHeaders","parameters":[{"name":"from","in":"query","required":false,"schema":{"type":"integer","format":"int32","default":0}},{"name":"to","in":"query","required":false,"schema":{"type":"integer","format":"int32","default":10}},{"name":"text","in":"query","required":false,"schema":{"type":"string"}},{"name":"sectionId","in":"query","required":false,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"categoryId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PaginableGenericListResultAnnouncementHeaderForEmployeeDTO"}}}}},"security":[{"employeeAPISessionId":[]}]},"post":{"tags":["Announcements"],"description":"Creates a very simple announcement","operationId":"employeePostAnnouncement","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AnnouncementForEmployeeDTO"}}},"required":true},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AnnouncementForEmployeeDTO"}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/announcements/{employeeId}/viewed/{id}":{"post":{"tags":["Announcement Reactions"],"description":"Mark an announcement as seen","operationId":"updateViewedCompanyAnnouncements","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK"}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/announcements/{employeeId}/likes/{id}":{"post":{"tags":["Announcement Reactions"],"description":"Marks the announcement as liked by a employee","operationId":"employeeLikeAnnouncement","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AnnouncementHeaderForEmployeeDTO"}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/announcements/{employeeId}/comments/{id}":{"get":{"tags":["Announcement Comments"],"description":"Retrieves the comments of an announcement a comment to an announcement","operationId":"getAnnouncementComments","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}},{"name":"from","in":"query","required":false,"schema":{"type":"integer","format":"int32","default":0}},{"name":"to","in":"query","required":false,"schema":{"type":"integer","format":"int32","default":10}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PaginableGenericListResultEmployeeCommentDTO"}}}}},"security":[{"employeeAPISessionId":[]}]},"post":{"tags":["Announcement Comments"],"description":"Post a comment to an announcement","operationId":"employeeCommentToAnnouncement","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AnnouncementCommentRequestDTO"}}},"required":true},"responses":{"200":{"description":"OK"}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/announcements/{employeeId}/comments/{id}/verify":{"post":{"tags":["Announcement Comments"],"description":"Checks a comment for moderation before posting","operationId":"announcementCommentVerify","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AnnouncementCommentRequestDTO"}}},"required":true},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/FeedbackVerificationResultDTO"}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/announcements/{employeeId}/comments/{id}/likes/{commentId}":{"post":{"tags":["Announcement Comments"],"description":"Marks the an announcement comment as liked by a employee","operationId":"employeeLikeAnnouncementComment","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}},{"name":"commentId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EmployeeCommentDTO"}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/announcements/{employeeId}/comments/{id}/inappropriate/{commentId}":{"post":{"tags":["Announcement Comments"],"description":"Marks the comments as inappropriate by a employee","operationId":"employeeMarkInappropiateAnnouncementComment","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}},{"name":"commentId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EmployeeCommentInappropiateRequest"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EmployeeCommentDTO"}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/announcements/{employeeId}/comments/{id}/dislikes/{commentId}":{"post":{"tags":["Announcement Comments"],"description":"Marks the an announcement comment as disliked by a employee","operationId":"employeeDislikeAnnouncementComment","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}},{"name":"commentId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EmployeeCommentDTO"}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/company":{"get":{"tags":["company-resource"],"operationId":"getUserCompany","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/CompanyDTO"}}}}},"security":[{"companyAPISessionId":[]}]},"post":{"tags":["company-resource"],"operationId":"createForAdvisorCompany","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/CompanyDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/user/image":{"post":{"tags":["user-profile-resource"],"operationId":"uploadUserImage","requestBody":{"content":{"*/*":{"schema":{"type":"object","properties":{"file":{"type":"string","format":"binary"}},"required":["file"]}}}},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/UserDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/user/filters":{"get":{"tags":["user-profile-resource"],"operationId":"getAllComparisonFilters","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/UserComparisonFilterDTO"}}}}}},"security":[{"companyAPISessionId":[]}]},"post":{"tags":["user-profile-resource"],"operationId":"create","requestBody":{"content":{"*/*":{"schema":{"$ref":"#/components/schemas/UserComparisonFilterDTO"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/UserComparisonFilterDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/translate/surveys":{"post":{"tags":["survey-translate-resource"],"operationId":"getSurveyTranslate","parameters":[{"name":"language","in":"query","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"*/*":{"schema":{"$ref":"#/components/schemas/SurveyDTO"}}},"required":true},"responses":{"400":{"description":"Bad Request","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorMessage"}}}},"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SurveyDTO"}}}}}}},"/api/v1/company/timesheet/{companyId}/users/batch":{"post":{"tags":["Company Timesheet"],"summary":"Create multiple timesheet records for multiple employees","description":"Creates timesheet records for multiple employees in a single request. Each element groups creation requests by employeeId.","operationId":"createTimesheetsForUsers","parameters":[{"name":"companyId","in":"path","description":"Company ID","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"array","description":"List of timesheet creation data grouped by employee","items":{"$ref":"#/components/schemas/TimesheetEmployeeBatchCreateRequestDTO"}}}},"required":true},"responses":{"200":{"description":"Timesheets created successfully"},"400":{"description":"Invalid request data"}}}},"/api/v1/company/timesheet/{companyId}/user/{employeeId}":{"post":{"tags":["Company Timesheet"],"summary":"Create a new timesheet record","description":"Creates a new timesheet record for an employee. Includes start time, end time, breaks, and period type.","operationId":"createTimesheet","parameters":[{"name":"companyId","in":"path","description":"Company ID","required":true,"schema":{"type":"string"}},{"name":"employeeId","in":"path","description":"Employee ID","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TimesheetCreateRequestDTO"}}},"required":true},"responses":{"200":{"description":"Timesheet created successfully"},"400":{"description":"Invalid request data"}}}},"/api/v1/company/timesheet/{companyId}/user/{employeeId}/batch":{"post":{"tags":["Company Timesheet"],"summary":"Create multiple timesheet records","description":"Creates multiple timesheet records for an employee. Receives a list of TimesheetCreateRequestDTO and creates each one.","operationId":"createTimesheets","parameters":[{"name":"companyId","in":"path","description":"Company ID","required":true,"schema":{"type":"string"}},{"name":"employeeId","in":"path","description":"Employee ID","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"array","description":"List of timesheet creation data","items":{"$ref":"#/components/schemas/TimesheetCreateRequestDTO"}}}},"required":true},"responses":{"200":{"description":"Timesheets created successfully"},"400":{"description":"Invalid request data"}}}},"/api/v1/company/terms":{"get":{"tags":["company-terms-and-conditions-resource"],"operationId":"getAllTermsAndConditions","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/CompanyTermsAndConditionsDTO"}}}}}},"security":[{"companyAPISessionId":[]}]},"post":{"tags":["company-terms-and-conditions-resource"],"operationId":"addTermsAndConditions","requestBody":{"content":{"*/*":{"schema":{"$ref":"#/components/schemas/CompanyTermsAndConditionsDTO"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/CompanyTermsAndConditionsDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/surveys":{"get":{"tags":["survey-resource"],"operationId":"getSurveys","parameters":[{"name":"status","in":"query","required":false,"schema":{"$ref":"#/components/schemas/SurveyStatus"}},{"name":"from","in":"query","required":false,"schema":{"type":"integer","format":"int32","default":0}},{"name":"to","in":"query","required":false,"schema":{"type":"integer","format":"int32","default":10}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PaginableGenericResultListSurveyDTO"}}}}},"security":[{"companyAPISessionId":[]}]},"post":{"tags":["survey-resource"],"operationId":"createSurvey","requestBody":{"content":{"*/*":{"schema":{"$ref":"#/components/schemas/SurveyDTO"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SurveyDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/surveys/{surveyId}/reminder":{"post":{"tags":["survey-resource"],"operationId":"surveyRemind","parameters":[{"name":"surveyId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"requestBody":{"content":{"*/*":{"schema":{"$ref":"#/components/schemas/SurveyRemindRequestDTO"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SurveyDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/surveys/export":{"post":{"tags":["survey-resource"],"operationId":"exportSurveyToXLS","requestBody":{"content":{"*/*":{"schema":{"$ref":"#/components/schemas/SurveyDTO"}}},"required":true},"responses":{"200":{"description":"OK","content":{"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet":{"schema":{"type":"string","format":"binary"}},"*/*":{"schema":{"type":"string","format":"binary"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/sso/saml2":{"post":{"tags":["sso-config-resource"],"summary":"Configure SAML2 SSO","operationId":"configureSaml2","requestBody":{"content":{"*/*":{"schema":{"$ref":"#/components/schemas/SAML2SSOConfigRequest"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SSOConfigResponse"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/sso/oidc":{"post":{"tags":["sso-config-resource"],"summary":"Configure OIDC SSO","operationId":"configureOidc","requestBody":{"content":{"*/*":{"schema":{"$ref":"#/components/schemas/OIDCSSOConfigRequest"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SSOConfigResponse"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/shift/{companyId}/user/{employeeId}":{"post":{"tags":["Company Shift"],"summary":"Create a new shift record","description":"Creates a new shift record for an employee. A shift defines working hours and days of the week when the employee should work.","operationId":"createShift","parameters":[{"name":"companyId","in":"path","description":"Company ID","required":true,"schema":{"type":"string"}},{"name":"employeeId","in":"path","description":"Employee ID","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShiftCreateRequestDTO"}}},"required":true},"responses":{"200":{"description":"Shift created successfully","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShiftDTO"}}}},"400":{"description":"Invalid request data","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShiftDTO"}}}}}}},"/api/v1/company/sendAccessLink":{"post":{"tags":["login-resource"],"operationId":"sendAccessLink_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AccountRequest"}}},"required":true},"responses":{"200":{"description":"OK"}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/reset/{companyId}":{"post":{"tags":["company-resource"],"operationId":"resetCompany","parameters":[{"name":"companyId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"secret","in":"query","required":false,"schema":{"type":"string","default":""}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/CompanyDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/reports/timesheet/from/{from}/to/{to}":{"post":{"tags":["reports-resource"],"operationId":"sendTimesheetReport","parameters":[{"name":"from","in":"path","required":true,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"path","required":true,"schema":{"type":"string","format":"date-time"}},{"name":"hierarchyIds","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"filters","in":"query","required":false,"schema":{"type":"string"}},{"name":"groupId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}}],"responses":{"200":{"description":"OK"}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/reports/survey/{surveyId}/{reportType}":{"post":{"tags":["reports-resource"],"operationId":"getSurveyReport","parameters":[{"name":"surveyId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"reportType","in":"path","required":true,"schema":{"type":"string","enum":["SUMMARY","RAW"]}},{"name":"roundId","in":"query","required":false,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"from","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"hierarchyId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"filters","in":"query","required":false,"schema":{"type":"string"}},{"name":"groupId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"questionResults","in":"query","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK"}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/reports/score/{scoreId}/from/{from}/to/{to}":{"post":{"tags":["reports-resource"],"operationId":"sendScoreReport","parameters":[{"name":"scoreId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"from","in":"path","required":true,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"path","required":true,"schema":{"type":"string","format":"date-time"}},{"name":"groupingType","in":"query","required":false,"schema":{"$ref":"#/components/schemas/GroupingType"}},{"name":"hierarchyIds","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"filters","in":"query","required":false,"schema":{"type":"string"}},{"name":"groupId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}}],"responses":{"200":{"description":"OK"}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/reports/question/from/{from}/to/{to}":{"post":{"tags":["reports-resource"],"operationId":"getQuestionResultsReport","parameters":[{"name":"from","in":"path","required":true,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"path","required":true,"schema":{"type":"string","format":"date-time"}},{"name":"questionId","in":"query","required":false,"schema":{"type":"string"}},{"name":"hierarchyId","in":"query","required":false,"schema":{"type":"string"}},{"name":"filters","in":"query","required":false,"schema":{"type":"string"}},{"name":"groupId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}}],"responses":{"200":{"description":"OK"}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/reports/participants/from/{from}/to/{to}":{"post":{"tags":["reports-resource"],"operationId":"getParticipationReport","parameters":[{"name":"from","in":"path","required":true,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"path","required":true,"schema":{"type":"string","format":"date-time"}},{"name":"hierarchyIds","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"filters","in":"query","required":false,"schema":{"type":"string"}},{"name":"groupId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"groupingType","in":"query","required":true,"schema":{"$ref":"#/components/schemas/GroupingType"}}],"responses":{"200":{"description":"OK"}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/reports/hi/from/{from}/to/{to}":{"post":{"tags":["reports-resource"],"operationId":"getHIReport","parameters":[{"name":"from","in":"path","required":true,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"path","required":true,"schema":{"type":"string","format":"date-time"}},{"name":"hierarchyId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"filters","in":"query","required":false,"schema":{"type":"string"}},{"name":"groupId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}}],"responses":{"200":{"description":"OK"}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/reports/global/{date}":{"post":{"tags":["reports-resource"],"operationId":"sendGlobalResultsReport","parameters":[{"name":"date","in":"path","required":true,"schema":{"type":"string","format":"date-time"}}],"responses":{"200":{"description":"OK"}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/reports/enps/from/{from}/to/{to}":{"post":{"tags":["reports-resource"],"operationId":"sendENPSReport","parameters":[{"name":"from","in":"path","required":true,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"path","required":true,"schema":{"type":"string","format":"date-time"}},{"name":"groupingType","in":"query","required":false,"schema":{"$ref":"#/components/schemas/GroupingType"}},{"name":"hierarchyIds","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"filters","in":"query","required":false,"schema":{"type":"string"}},{"name":"groupId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}}],"responses":{"200":{"description":"OK"}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/reports/engagement/from/{from}/to/{to}/grouping/{groupingType}":{"post":{"tags":["reports-resource"],"operationId":"sendEngagementReport","parameters":[{"name":"from","in":"path","required":true,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"path","required":true,"schema":{"type":"string","format":"date-time"}},{"name":"groupingType","in":"path","required":true,"schema":{"$ref":"#/components/schemas/GroupingType"}},{"name":"hierarchyId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"filters","in":"query","required":false,"schema":{"type":"string"}},{"name":"groupId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}}],"responses":{"200":{"description":"OK"}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/reports/employees":{"post":{"tags":["reports-resource"],"operationId":"exportEmployeesToExcel","responses":{"200":{"description":"OK"}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/reports/activation/from/{from}/to/{to}":{"post":{"tags":["reports-resource"],"operationId":"getActivationReport","parameters":[{"name":"from","in":"path","required":true,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"path","required":true,"schema":{"type":"string","format":"date-time"}},{"name":"hierarchyIds","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"filters","in":"query","required":false,"schema":{"type":"string"}},{"name":"groupId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"groupingType","in":"query","required":true,"schema":{"$ref":"#/components/schemas/GroupingType"}}],"responses":{"200":{"description":"OK"}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/register":{"post":{"tags":["login-resource"],"operationId":"register_1","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UserRegistrationRequestDTO"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/UserRegistrationResponseDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/recognition/reports/excel":{"post":{"tags":["recognition-report-resource"],"operationId":"generateFeedbackExcelReport","parameters":[{"name":"from","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"questionId","in":"query","required":false,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"hierarchyIds","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"filters","in":"query","required":false,"schema":{"type":"string"}},{"name":"groupIds","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"commentText","in":"query","required":false,"schema":{"type":"string"}},{"name":"hasCompanyReply","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"hasReplies","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"hasConversation","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"hasSignature","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"ratings","in":"query","required":false,"schema":{"type":"array","items":{"type":"integer","format":"int32"},"uniqueItems":true}},{"name":"tags","in":"query","required":false,"schema":{"type":"array","items":{"type":"string"},"uniqueItems":true}},{"name":"feedbackTypes","in":"query","required":false,"schema":{"type":"array","items":{"$ref":"#/components/schemas/FeedbackType"},"uniqueItems":true}},{"name":"excludePrivate","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"privated","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"containerId","in":"query","required":false,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"voeCategories","in":"query","required":false,"schema":{"type":"array","items":{"type":"string"},"uniqueItems":true}},{"name":"positivenessFrom","in":"query","required":false,"schema":{"type":"integer","format":"int32"}},{"name":"positivenessTo","in":"query","required":false,"schema":{"type":"integer","format":"int32"}}],"responses":{"200":{"description":"OK"}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/questions":{"post":{"tags":["questions-resource"],"summary":"Create a new question","description":"Creates a new question with the provided question data","operationId":"createQuestion","requestBody":{"content":{"*/*":{"schema":{"$ref":"#/components/schemas/QuestionDTO"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/QuestionDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/preview/sendInvitationSample":{"post":{"tags":["preview-resource"],"operationId":"sendInvitationPreview","requestBody":{"content":{"*/*":{"schema":{"$ref":"#/components/schemas/SendInvitationPreviewDTO"}}},"required":true},"responses":{"200":{"description":"OK"}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/people/resubscribe":{"post":{"tags":["people-resource"],"operationId":"resubscribeToEmail","parameters":[{"name":"id","in":"query","required":false,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"email","in":"query","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PersonDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/people/resendInvite":{"post":{"tags":["people-resource"],"operationId":"resendInvite","parameters":[{"name":"id","in":"query","required":false,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"email","in":"query","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PersonDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/people/reminder/{target}":{"post":{"tags":["people-resource"],"operationId":"engageInactives","parameters":[{"name":"target","in":"path","required":true,"schema":{"type":"string","enum":["SLEEPING","NON_ACTIVATED"]}},{"name":"hierarchyId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"filters","in":"query","required":false,"schema":{"type":"string"}},{"name":"groupId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}}],"requestBody":{"content":{"*/*":{"schema":{"$ref":"#/components/schemas/EmployeeSendReminderRequest"}}},"required":true},"responses":{"200":{"description":"OK"}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/milestone":{"post":{"tags":["milestone-resource"],"operationId":"createMilestone","requestBody":{"content":{"*/*":{"schema":{"$ref":"#/components/schemas/MilestoneDTO"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/MilestoneDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/logout":{"post":{"tags":["login-resource"],"operationId":"logout","responses":{"200":{"description":"OK"}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/login":{"post":{"tags":["login-resource"],"operationId":"login_1","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/LoginResponse"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/inbound/conversation":{"post":{"tags":["inbound-email-resource"],"operationId":"createCommentReply","requestBody":{"content":{"application/x-www-form-urlencoded":{"schema":{"$ref":"#/components/schemas/MultiValueMap"}}},"required":true},"responses":{"200":{"description":"OK"}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/inbound/announcement":{"post":{"tags":["inbound-email-resource"],"operationId":"createCompanyAnnouncementByEmail","requestBody":{"content":{"application/x-www-form-urlencoded":{"schema":{"$ref":"#/components/schemas/MultiValueMap"}}},"required":true},"responses":{"200":{"description":"OK"}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/hris":{"get":{"tags":["hris-configuration-resource"],"operationId":"getCurrentHRISConfiguration","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"oneOf":[{"$ref":"#/components/schemas/BambooHRISConfigurationDTO"},{"$ref":"#/components/schemas/MergeHRISConfigurationDTO"},{"$ref":"#/components/schemas/PersonioHRISConfigurationDTO"},{"$ref":"#/components/schemas/WoltersKluwerHRISConfigurationDTO"}]}}}}},"security":[{"companyAPISessionId":[]}]},"post":{"tags":["hris-configuration-resource"],"operationId":"setCurrentHRISConfiguration","requestBody":{"content":{"*/*":{"schema":{"oneOf":[{"$ref":"#/components/schemas/BambooHRISConfigurationDTO"},{"$ref":"#/components/schemas/MergeHRISConfigurationDTO"},{"$ref":"#/components/schemas/PersonioHRISConfigurationDTO"},{"$ref":"#/components/schemas/WoltersKluwerHRISConfigurationDTO"}]}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"oneOf":[{"$ref":"#/components/schemas/BambooHRISConfigurationDTO"},{"$ref":"#/components/schemas/MergeHRISConfigurationDTO"},{"$ref":"#/components/schemas/PersonioHRISConfigurationDTO"},{"$ref":"#/components/schemas/WoltersKluwerHRISConfigurationDTO"}]}}}}},"security":[{"companyAPISessionId":[]}]},"delete":{"tags":["hris-configuration-resource"],"operationId":"deleteCurrentHRISConfiguration","responses":{"200":{"description":"OK"}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/hierarchy":{"get":{"tags":["hierarchy-resource"],"operationId":"getHierarchies","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/CompanyHierarchyDTO"}}}}}},"security":[{"companyAPISessionId":[]}]},"post":{"tags":["hierarchy-resource"],"operationId":"addHierarchy","requestBody":{"content":{"*/*":{"schema":{"$ref":"#/components/schemas/CompanyHierarchyDTO"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/CompanyHierarchyDTO"}}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/hierarchy/silos":{"get":{"tags":["hierarchy-silos-resource"],"operationId":"getSilos","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/HierarchySiloDTO"}}}}}},"security":[{"companyAPISessionId":[]}]},"post":{"tags":["hierarchy-silos-resource"],"operationId":"addSilo","requestBody":{"content":{"*/*":{"schema":{"$ref":"#/components/schemas/HierarchySiloDTO"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/HierarchySiloDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/forget":{"post":{"tags":["login-resource"],"operationId":"forget","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AccountRequest"}}},"required":true},"responses":{"200":{"description":"OK"}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/files":{"post":{"tags":["company-files-resource"],"operationId":"uploadPublicFile","parameters":[{"name":"file","in":"query","required":true,"schema":{"type":"array","items":{"type":"string","format":"binary"}}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/AttachmentResponse"},"uniqueItems":true}},"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/AttachmentResponse"},"uniqueItems":true}}}}},"security":[{"companyAPISessionId":[]}]},"delete":{"tags":["company-files-resource"],"operationId":"deletePublicFile","parameters":[{"name":"attachmentId","in":"query","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/AttachmentResponse"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/feedback/reports/excel":{"post":{"tags":["feedback-report-resource"],"operationId":"generateFeedbackExcelReport_1","parameters":[{"name":"from","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"questionId","in":"query","required":false,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"reportType","in":"query","required":false,"schema":{"$ref":"#/components/schemas/CommentsReportType"}},{"name":"hierarchyIds","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"filters","in":"query","required":false,"schema":{"type":"string"}},{"name":"groupIds","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"commentText","in":"query","required":false,"schema":{"type":"string"}},{"name":"hasCompanyReply","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"hasReplies","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"hasConversation","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"hasSignature","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"ratings","in":"query","required":false,"schema":{"type":"array","items":{"type":"integer","format":"int32"},"uniqueItems":true}},{"name":"tags","in":"query","required":false,"schema":{"type":"array","items":{"type":"string"},"uniqueItems":true}},{"name":"feedbackTypes","in":"query","required":false,"schema":{"type":"array","items":{"$ref":"#/components/schemas/FeedbackType"},"uniqueItems":true}},{"name":"sameAuthorAs","in":"query","required":false,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"excludePrivate","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"privated","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"containerId","in":"query","required":false,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"voeCategories","in":"query","required":false,"schema":{"type":"array","items":{"type":"string"},"uniqueItems":true}},{"name":"positivenessFrom","in":"query","required":false,"schema":{"type":"integer","format":"int32"}},{"name":"positivenessTo","in":"query","required":false,"schema":{"type":"integer","format":"int32"}}],"responses":{"200":{"description":"OK"}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/feedback/containers":{"get":{"tags":["feedback-containers-resource"],"operationId":"getFeedbackContainers","parameters":[{"name":"fromContainer","in":"query","required":false,"schema":{"type":"integer","format":"int32","default":0}},{"name":"toContainer","in":"query","required":false,"schema":{"type":"integer","format":"int32","default":10}},{"name":"from","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"activeOn","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"hierarchyId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"filters","in":"query","required":false,"schema":{"type":"string"}},{"name":"groupId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"draft","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"archived","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"feedbackType","in":"query","required":true,"schema":{"$ref":"#/components/schemas/FeedbackType"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PaginableGenericListResultAbstractFeedbackContainerDTO"}}}}},"security":[{"companyAPISessionId":[]}]},"post":{"tags":["feedback-containers-resource"],"operationId":"createFeedbackContainer","requestBody":{"content":{"*/*":{"schema":{"oneOf":[{"$ref":"#/components/schemas/FeedbackIdeaInitiativeContainerDTO"}]}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"oneOf":[{"$ref":"#/components/schemas/FeedbackIdeaInitiativeContainerDTO"}]}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/feedback/configuration":{"get":{"tags":["feedback-configuration-resource"],"operationId":"getFeedbackCompanyConfig","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/FeedbackConfiguration"}}}}},"security":[{"companyAPISessionId":[]}]},"post":{"tags":["feedback-configuration-resource"],"operationId":"updateFeedbackCompanyConfig","requestBody":{"content":{"*/*":{"schema":{"$ref":"#/components/schemas/FeedbackConfiguration"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/FeedbackConfiguration"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/feedback/configuration/status":{"post":{"tags":["feedback-configuration-status-type-resource"],"operationId":"addFeedbackStatusType","requestBody":{"content":{"*/*":{"schema":{"$ref":"#/components/schemas/FeedbackStatusType"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/FeedbackStatusType"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/enps/configuration":{"get":{"tags":["enps-configuration-resource"],"operationId":"getENPSConfiguration","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ENPSConfigurationDTO"}}}}},"security":[{"companyAPISessionId":[]}]},"post":{"tags":["enps-configuration-resource"],"operationId":"configureENPS","requestBody":{"content":{"*/*":{"schema":{"$ref":"#/components/schemas/ENPSConfigureRequest"}}},"required":true},"responses":{"200":{"description":"OK"}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/employees/groups":{"get":{"tags":["groups-resource"],"operationId":"getGroups","parameters":[{"name":"active","in":"query","required":false,"schema":{"type":"boolean","default":true}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/EmployeeGroupDTO"}}}}}},"security":[{"companyAPISessionId":[]}]},"post":{"tags":["groups-resource"],"operationId":"addGroup","requestBody":{"content":{"*/*":{"schema":{"$ref":"#/components/schemas/EmployeeGroupDTO"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/EmployeeGroupDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/culture/values":{"get":{"tags":["company-culture-values-resource"],"operationId":"getCompanyCultureValues","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/CompanyCultureValueDTO"}}}}}},"security":[{"companyAPISessionId":[]}]},"post":{"tags":["company-culture-values-resource"],"operationId":"addCompanyCultureValue","requestBody":{"content":{"*/*":{"schema":{"$ref":"#/components/schemas/CompanyCultureValueCreateRequestDTO"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/CompanyCultureValueDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/culture/values/translate":{"post":{"tags":["company-culture-values-resource"],"operationId":"translateCulturalValues","requestBody":{"content":{"*/*":{"schema":{"$ref":"#/components/schemas/CompanyCultureValuesTranslationRequestDTO"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/CompanyCultureValueDTO"}}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/conversations/starters":{"post":{"tags":["conversations-resource"],"description":"Get's conversation starters for a given context","operationId":"getConversationStarters","parameters":[{"name":"numSuggestions","in":"query","required":false,"schema":{"type":"integer","format":"int32","default":3}}],"requestBody":{"content":{"*/*":{"schema":{"$ref":"#/components/schemas/ConversationStartersRequestDTO"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/ConversationStarterDTO"}}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/conversations/message/{conversationId}":{"post":{"tags":["conversations-resource"],"operationId":"postMessage_1","parameters":[{"name":"conversationId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"requestBody":{"content":{"*/*":{"schema":{"$ref":"#/components/schemas/ConversationMessageDTO"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ConversationDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/conversations/init":{"post":{"tags":["conversations-resource"],"operationId":"initConversationOverStatus","requestBody":{"content":{"*/*":{"schema":{"$ref":"#/components/schemas/ConversationInitRequestDTO"}}},"required":true},"responses":{"400":{"description":"Bad Request","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorMessage"}}}},"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ConversationDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/content/generate":{"post":{"tags":["content-resource"],"operationId":"generateContent","requestBody":{"content":{"*/*":{"schema":{"$ref":"#/components/schemas/ContentGenerationRequestDTO"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/config":{"get":{"tags":["company-config-resource"],"operationId":"getCompanyCurrentCompanyConfig","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/CompanyConfig"}}}}},"security":[{"companyAPISessionId":[]}]},"post":{"tags":["company-config-resource"],"operationId":"updateCompany","requestBody":{"content":{"*/*":{"schema":{"$ref":"#/components/schemas/CompanyDTO"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/CompanyDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/config/{companyId}":{"get":{"tags":["company-config-resource"],"operationId":"getCompanyConfig","parameters":[{"name":"companyId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/CompanyConfig"}}}}},"security":[{"companyAPISessionId":[]}]},"post":{"tags":["company-config-resource"],"operationId":"updateCompanyConfig","parameters":[{"name":"companyId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"requestBody":{"content":{"*/*":{"schema":{"$ref":"#/components/schemas/CompanyConfig"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/CompanyConfig"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/config/{companyId}/{accountStatus}":{"post":{"tags":["company-config-resource"],"operationId":"updateCompanyAccountStatus","parameters":[{"name":"companyId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"accountStatus","in":"path","required":true,"schema":{"$ref":"#/components/schemas/CompanyAccountStatus"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/CompanyConfig"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/config/{companyId}/silent-managers":{"post":{"tags":["company-config-resource"],"operationId":"updateSilentManagersConfiguration","parameters":[{"name":"companyId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"requestBody":{"content":{"*/*":{"schema":{"$ref":"#/components/schemas/SilentManagersConfigurationRequest"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/CompanyConfig"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/config/setup":{"post":{"tags":["company-config-resource"],"operationId":"setupCompany","requestBody":{"content":{"*/*":{"schema":{"$ref":"#/components/schemas/CompanySetupRequestDTO"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/CompanyDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/config/image":{"post":{"tags":["company-config-resource"],"operationId":"uploadCompanyImage","requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"file":{"type":"string","format":"binary"}},"required":["file"]}},"*/*":{"schema":{"type":"object","properties":{"file":{"type":"string","format":"binary"}},"required":["file"]}}}},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/CompanyDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/config/customization":{"get":{"tags":["company-config-resource"],"operationId":"getCompanyCustomization","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/CompanyCustomizationDTO"}}}}},"security":[{"companyAPISessionId":[]}]},"post":{"tags":["company-config-resource"],"operationId":"updateCompanyCustomization","requestBody":{"content":{"*/*":{"schema":{"$ref":"#/components/schemas/CompanyCustomizationDTO"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/CompanyCustomizationDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/comments/seen/{commentId}":{"post":{"tags":["comments-resource"],"operationId":"markAsSeen","parameters":[{"name":"commentId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/BaseCommentDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/comments/reply/{commentId}":{"post":{"tags":["comments-resource"],"operationId":"reply","parameters":[{"name":"commentId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"requestBody":{"content":{"*/*":{"schema":{"$ref":"#/components/schemas/CompanyCommentReplyRequest"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/BaseCommentDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/characteristics":{"get":{"tags":["characteristics-resource"],"operationId":"getCompanyCharacteristics","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"oneOf":[{"$ref":"#/components/schemas/SegmentDateDTO"},{"$ref":"#/components/schemas/SegmentListDTO"}]}}}}}},"security":[{"companyAPISessionId":[]}]},"post":{"tags":["characteristics-resource"],"operationId":"createCompanyCharacteristics","requestBody":{"content":{"*/*":{"schema":{"oneOf":[{"$ref":"#/components/schemas/CompanySegmentDate"},{"$ref":"#/components/schemas/CompanySegmentList"}]}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"oneOf":[{"$ref":"#/components/schemas/SegmentDateDTO"},{"$ref":"#/components/schemas/SegmentListDTO"}]}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/change/{companyId}":{"post":{"tags":["company-resource"],"operationId":"changeCompany","parameters":[{"name":"companyId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/UserDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/announcements":{"post":{"tags":["announcements-resource"],"operationId":"createCompanyAnnouncement","requestBody":{"content":{"*/*":{"schema":{"oneOf":[{"$ref":"#/components/schemas/LifeEventAnnouncementCreateUpdateRequestDTO"}]}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/AnnouncementExternalDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/announcements/translate":{"post":{"tags":["announcements-resource"],"operationId":"translateAnnouncement","requestBody":{"content":{"*/*":{"schema":{"$ref":"#/components/schemas/AnnouncementTranslateRequestDTO"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/AnnouncementTranslationDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/announcements/categories":{"get":{"tags":["announcements-categories-resource"],"operationId":"getAnnouncementCategories","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/AnnouncementCategoryDTO"}}}}}},"security":[{"companyAPISessionId":[]}]},"post":{"tags":["announcements-categories-resource"],"operationId":"createAnnouncementCategory","requestBody":{"content":{"*/*":{"schema":{"$ref":"#/components/schemas/AnnouncementCategoryDTO"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/AnnouncementCategoryDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/advisor/surveys/templates":{"get":{"tags":["advisors-survey-resource"],"operationId":"getSurveyTemplates","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/SurveyTemplateDTO"}}}}}},"security":[{"companyAPISessionId":[]}]},"post":{"tags":["advisors-survey-resource"],"operationId":"createSurveyTemplates","requestBody":{"content":{"*/*":{"schema":{"$ref":"#/components/schemas/SurveyTemplateDTO"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SurveyTemplateDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/advisor/surveys/categories":{"get":{"tags":["advisors-survey-resource"],"operationId":"getSurveyCategories","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/SurveyTemplateCategoryDTO"}}}}}},"security":[{"companyAPISessionId":[]}]},"post":{"tags":["advisors-survey-resource"],"operationId":"createSurveyCategory","requestBody":{"content":{"*/*":{"schema":{"$ref":"#/components/schemas/SurveyTemplateCategoryDTO"}}},"required":true},"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SurveyTemplateCategoryDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/oauth2/register":{"post":{"tags":["mcp-o-auth-dynamic-client-registration-controller"],"operationId":"register_2","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/RegistrationRequest"}}},"required":true},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object"}}}}}}},"/api/v1/status":{"get":{"tags":["status-resource"],"operationId":"status","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}}},"/api/v1/reports/exportHI":{"get":{"tags":["reporting-resource"],"operationId":"exportHI","parameters":[{"name":"companyId","in":"query","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"from","in":"query","required":true,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"query","required":true,"schema":{"type":"string","format":"date-time"}}],"responses":{"200":{"description":"OK","content":{"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet":{"schema":{"type":"string","format":"binary"}},"*/*":{"schema":{"type":"string","format":"binary"}}}}}}},"/api/v1/reports/countManagersData":{"get":{"tags":["reporting-resource"],"operationId":"computeBimboManagers","parameters":[{"name":"companyId","in":"query","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"from","in":"query","required":true,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"query","required":true,"schema":{"type":"string","format":"date-time"}}],"responses":{"200":{"description":"OK","content":{"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet":{"schema":{"type":"string","format":"binary"}},"*/*":{"schema":{"type":"string","format":"binary"}}}}}}},"/api/v1/public/company/timesheets":{"get":{"tags":["Timesheets"],"summary":"Retrieves paginated timesheet entries (optional filter by employee email)","operationId":"getTimesheets","parameters":[{"name":"email","in":"query","description":"Employee email; omit to return entries for all employees (paginated)","required":false,"schema":{"type":"string"}},{"name":"from","in":"query","description":"Pagination start index (inclusive)","required":false,"schema":{"type":"integer","format":"int32","default":0},"example":0},{"name":"to","in":"query","description":"Pagination end index (exclusive). Page size is (to - from).","required":false,"schema":{"type":"integer","format":"int32","default":10},"example":10},{"name":"dateFrom","in":"query","description":"Start date filter (ddMMyyyy format)","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"dateTo","in":"query","description":"End date filter (ddMMyyyy format)","required":false,"schema":{"type":"string","format":"date-time"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PaginableGenericListResultTimesheetPublic"}}}}},"security":[{"happyforceAPIKey":[]}]}},"/api/v1/public/company/timesheets/deleted":{"get":{"tags":["Timesheets"],"summary":"Retrieves paginated deleted timesheet entries (optional filter by employee email)","operationId":"getDeletedTimesheets","parameters":[{"name":"email","in":"query","description":"Employee email; omit to return entries for all employees (paginated)","required":false,"schema":{"type":"string"}},{"name":"from","in":"query","description":"Pagination start index (inclusive)","required":false,"schema":{"type":"integer","format":"int32","default":0},"example":0},{"name":"to","in":"query","description":"Pagination end index (exclusive). Page size is (to - from).","required":false,"schema":{"type":"integer","format":"int32","default":10},"example":10},{"name":"dateFrom","in":"query","description":"Start date filter (ddMMyyyy format)","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"dateTo","in":"query","description":"End date filter (ddMMyyyy format)","required":false,"schema":{"type":"string","format":"date-time"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PaginableGenericListResultDeletedTimesheetPublic"}}}}},"security":[{"happyforceAPIKey":[]}]}},"/api/v1/public/company/stats/scores/{scoreId}":{"get":{"tags":["Stats"],"summary":"Retrieves the Stats of a score for a given iteractions","operationId":"getCompanyScoreStats","parameters":[{"name":"scoreId","in":"path","description":"Score from which the stats should be retrieved","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"from","in":"query","description":"For which date from the results should be returned","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"query","description":"For which date to the results should be returned","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"hierarchyId","in":"query","description":"Id of the area for which you want to retrive the stats. If null, all company data is returned","required":false,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"profile","in":"query","description":"Profile filter string. If not specified, no profile filtering will be applied. Check examples for details","required":false,"schema":{"type":"string"},"example":"profileId1:allowedValueId,profileId2:allowedValueId..."},{"name":"groupId","in":"query","description":"One or more group ids for which you want to retrieve the stats. If not specified, no group filtering will be applied","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ScoreStats"}}}}},"security":[{"happyforceAPIKey":[]}]}},"/api/v1/public/company/stats/scores/stats/{scoreId}":{"get":{"tags":["Stats"],"summary":"Retrieves the Stats of a score for a given iteractions","operationId":"getCompanyScoreStats_1","parameters":[{"name":"scoreId","in":"path","description":"Score from which the stats should be retrieved","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"from","in":"query","description":"For which date from the results should be returned","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"query","description":"For which date to the results should be returned","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"hierarchyId","in":"query","description":"Id of the area for which you want to retrive the stats. If null, all company data is returned","required":false,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"profile","in":"query","description":"Profile filter string. If not specified, no profile filtering will be applied. Check examples for details","required":false,"schema":{"type":"string"},"example":"profileId1:allowedValueId,profileId2:allowedValueId..."},{"name":"groupId","in":"query","description":"One or more group ids for which you want to retrieve the stats. If not specified, no group filtering will be applied","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ScoreStats"}}}}},"security":[{"happyforceAPIKey":[]}]}},"/api/v1/public/company/stats/participation":{"get":{"tags":["Stats"],"description":"Retrieves the Participation stats for the requested period","operationId":"getCompanyParticipationStats","parameters":[{"name":"from","in":"query","description":"Start date for retrieving stats (ddMMyyyy format). If null: Today minus one month","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"query","description":"End date for retrieving stats  (ddMMyyyy format). If null: Today","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"hierarchyId","in":"query","description":"Id of the area for which you want to retrive the stats. If null, all company data is returned","required":false,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"profile","in":"query","description":"Profile filter string. If not specified, no profile filtering will be applied.","required":false,"schema":{"type":"string"},"example":"profileId1:allowedValueId,profileId2:allowedValueId..."},{"name":"groupId","in":"query","description":"One or more group ids for which you want to retrieve the stats. If not specified, no group filtering will be applied","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"grouping","in":"query","description":"The type of grouping for the results. Default is by moth","required":false,"schema":{"$ref":"#/components/schemas/DateGroupingTypes","default":"MONTH"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Participation Stats"}}}}},"security":[{"happyforceAPIKey":[]}]}},"/api/v1/public/company/stats/hi":{"get":{"tags":["Stats"],"summary":"Retrieves the HI stats for the requested period","operationId":"getCompanyHIStats","parameters":[{"name":"from","in":"query","description":"Start date for retrieving stats (ddMMyyyy format). If null: Today minus one month","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"query","description":"End date for retrieving stats  (ddMMyyyy format). If null: Today","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"hierarchyId","in":"query","description":"Id of the area for which you want to retrive the stats. If null, all company data is returned","required":false,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"profile","in":"query","description":"Profile filter string. If not specified, no profile filtering will be applied.","required":false,"schema":{"type":"string"},"example":"profileId1:allowedValueId,profileId2:allowedValueId..."},{"name":"groupId","in":"query","description":"One or more group ids for which you want to retrieve the stats. If not specified, no group filtering will be applied","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/HIStats"}}}}},"security":[{"happyforceAPIKey":[]}]}},"/api/v1/public/company/stats/enps":{"get":{"tags":["Stats"],"description":"Retrieves the eNPS stats for the requested period","operationId":"getCompanyENPSStats","parameters":[{"name":"from","in":"query","description":"Start date for retrieving stats (ddMMyyyy format). If null: Today minus one month","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"query","description":"End date for retrieving stats  (ddMMyyyy format). If null: Today","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"hierarchyId","in":"query","description":"Id of the area for which you want to retrive the stats. If null, all company data is returned","required":false,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"profile","in":"query","description":"Profile filter string. If not specified, no profile filtering will be applied.","required":false,"schema":{"type":"string"},"example":"profileId1:allowedValueId,profileId2:allowedValueId..."},{"name":"groupId","in":"query","description":"One or more group ids for which you want to retrieve the stats. If not specified, no group filtering will be applied","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ENPSStats"}}}}},"security":[{"happyforceAPIKey":[]}]}},"/api/v1/public/company/stats/activation":{"get":{"tags":["Stats"],"description":"Retrieves the Activation stats for the requested period","operationId":"getCompanyActivationStats","parameters":[{"name":"from","in":"query","description":"Start date for retrieving stats (ddMMyyyy format). If null: Today minus one month","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"query","description":"End date for retrieving stats  (ddMMyyyy format). If null: Today","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"hierarchyId","in":"query","description":"Id of the area for which you want to retrive the stats. If null, all company data is returned","required":false,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"profile","in":"query","description":"Profile filter string. If not specified, no profile filtering will be applied.","required":false,"schema":{"type":"string"},"example":"profileId1:allowedValueId,profileId2:allowedValueId..."},{"name":"groupId","in":"query","description":"One or more group ids for which you want to retrieve the stats. If not specified, no group filtering will be applied","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Activation Stats"}}}}},"security":[{"happyforceAPIKey":[]}]}},"/api/v1/public/company/scores":{"get":{"tags":["Scores"],"summary":"Retrieves a list of all available scores on your account","description":"The information provided by this endpoint is useful to build the filters on the score Stats API","operationId":"getCompanyScoreStats_2","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Score"}}}}}},"security":[{"happyforceAPIKey":[]}]}},"/api/v1/public/company/hierarchy":{"get":{"tags":["Segmentation"],"summary":"Retrieves all the areas metadata and configuration available for your company in a hirarchical way","description":"The information provided by this endpoint is useful to build the filters on the stats API or setup the employee profiles on the Employees API.","operationId":"getHierarchy_1","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Area"}}}}}},"security":[{"happyforceAPIKey":[]}]}},"/api/v1/public/company/groups":{"get":{"tags":["Segmentation"],"summary":"Retrieves all the group metadata (eg: perfomant users, newbies...) and configuration available for your company","description":"The information provided by this endpoint is useful to build the filters on the stats API or setup the employee profiles on the Employees API.","operationId":"getGroups_1","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Group"}}}}}},"security":[{"happyforceAPIKey":[]}]}},"/api/v1/public/company/employees":{"get":{"tags":["Employees"],"summary":"Retrieves all the employees","operationId":"getEmployees","parameters":[{"name":"hierarchyId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"profile","in":"query","required":false,"schema":{"type":"string"}},{"name":"groupId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"activated","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"deleted","in":"query","required":false,"schema":{"type":"boolean"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Employee"}}}}}},"security":[{"happyforceAPIKey":[]}]}},"/api/v1/public/company/characteristics":{"get":{"tags":["Segmentation"],"summary":"Retrieves all the personal profile metadata (eg: gender, age, tenure) and configuration available for your company","description":"The information provided by this endpoint is useful to build the filters on the stats API or setup the employee profiles on the Employees API.","operationId":"getCharacteristics","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Profile"}}}}}},"security":[{"happyforceAPIKey":[]}]}},"/api/v1/maintenance/reset":{"get":{"tags":["maintenance-resource"],"operationId":"reset","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}}},"/api/v1/maintenance/execute":{"get":{"tags":["maintenance-resource"],"operationId":"execute","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}}},"/api/v1/internal/feedback/{commentId}":{"get":{"tags":["internal-feedback-resource"],"operationId":"getComment","parameters":[{"name":"commentId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/AbstractInternalFeedback"}}}}}}},"/api/v1/info/errorcodes":{"get":{"tags":["Info"],"description":"Get list of all error codes defined in the system","operationId":"listErrorCodes","responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"array","items":{"type":"string"}}}}}}}},"/api/v1/info/app/{appVersion}/{platform}/version":{"get":{"tags":["Info"],"description":"Get app version update information for a specific platform and app version","operationId":"getAppUpdate","parameters":[{"name":"appVersion","in":"path","description":"Current app version (e.g., '4.0.0' or '5.0.0')","required":true,"schema":{"type":"string"}},{"name":"platform","in":"path","description":"Device platform","required":true,"schema":{"$ref":"#/components/schemas/DevicePlatform"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AppVersionDTO"}}}}}}},"/api/v1/employee/vote/{employeeId}/questions":{"get":{"tags":["Vote"],"description":"Get's the pending to answer questions for an employee","operationId":"getEmployeeQuestions","parameters":[{"name":"applySaturationPolicies","in":"query","required":false,"schema":{"type":"boolean","default":true}},{"name":"surveyId","in":"query","required":false,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/QuestionDTO"}}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/timesheet/{employeeId}/state":{"get":{"tags":["Timesheet"],"description":"Get timesheet state for an employee","operationId":"getTimesheetState","parameters":[{"name":"employeeId","in":"path","description":"Employee ID","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"date","in":"query","description":"Date to get timesheet state (format: ddMMyyyy)","required":true,"schema":{"type":"string","format":"date-time"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PersonTimesheetDTO"}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/timesheet/{employeeId}/records":{"get":{"tags":["Timesheet"],"description":"Get timesheet records for a specific month","operationId":"getTimesheetRecordsForMonth","parameters":[{"name":"employeeId","in":"path","description":"Employee ID","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"startDate","in":"query","description":"Start date (format: ddMMyyyy)","required":true,"schema":{"type":"string","format":"date-time"}},{"name":"endDate","in":"query","description":"End date (format: ddMMyyyy)","required":true,"schema":{"type":"string","format":"date-time"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PaginableGenericListResultPersonTimesheetDTO"}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/timesheet/{employeeId}/history":{"get":{"tags":["Timesheet"],"description":"Get timesheet history for an employee","operationId":"getTimesheetHistory","parameters":[{"name":"employeeId","in":"path","description":"Employee ID","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"from","in":"query","description":"Pagination offset","required":false,"schema":{"type":"integer","format":"int32","default":0}},{"name":"to","in":"query","description":"Pagination limit","required":false,"schema":{"type":"integer","format":"int32","default":10}},{"name":"dateFrom","in":"query","description":"Start date filter (format: ddMMyyyy)","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"dateTo","in":"query","description":"End date filter (format: ddMMyyyy)","required":false,"schema":{"type":"string","format":"date-time"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PeriodTimesheetDTO"}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/terms/pending":{"get":{"tags":["Terms and Conditions"],"description":"Retrieves pending terms and conditions that the employee needs to accept","operationId":"getPendingTerms","responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/EmployeeTermsAndConditionsDTO"}}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/terms/active":{"get":{"tags":["Terms and Conditions"],"description":"Lists all active terms and conditions for the employee's company","operationId":"getActiveTerms","responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/EmployeeTermsAndConditionsDTO"}}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/surveys/{employeeId}/status":{"get":{"tags":["Surveys"],"description":"Get's pending survey status for a given employee","operationId":"getSurveyStatus","responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/SurveyPendingStatusDTO"}}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/status":{"get":{"tags":["Status"],"description":"Sends a live updateTopic of employee info and gets the Employee data","operationId":"getStatus","responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EmployeeStatusResponse"}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/status/timezone":{"get":{"tags":["Status"],"description":"Sends a live updateTopic of employee info and gets the Employee data","operationId":"getTimezoneInfo","responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EmployeeTimeZoneInfo"}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/stats/{employeeId}":{"get":{"tags":["Stats"],"description":"Get's the extended stats. Id is optional, so the default is all company stats","operationId":"getHierarchyExtendedStats","parameters":[{"name":"hierarchyId","in":"query","required":false,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/GlobalStatsDTO"}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/stats/{employeeId}/score/{scoreId}":{"get":{"tags":["Stats"],"description":"Get's the Score Detail of all the leaf departments of the company of an employee","operationId":"getScoreDetailedStats","parameters":[{"name":"scoreId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"hierarchyId","in":"query","required":false,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ScoreDetailedStatsDTO"}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/stats/{employeeId}/questions":{"get":{"tags":["Question Stats"],"description":"Get's the stats for all the questions of the company of an employee","operationId":"getQuestionsStats","parameters":[{"name":"type","in":"query","description":"question type to be found: Open, Topic, General (HI), etc.","required":false,"schema":{"type":"array","items":{"$ref":"#/components/schemas/QuestionType"}}},{"name":"status","in":"query","description":"status of the question: ANY, ACTIVE, EXPIRED...","required":false,"schema":{"type":"array","items":{"$ref":"#/components/schemas/QuestionStatus"},"uniqueItems":true}},{"name":"from","in":"query","description":"Starting results position","required":false,"schema":{"type":"integer","format":"int32","default":0}},{"name":"to","in":"query","description":"End results position","required":false,"schema":{"type":"integer","format":"int32","default":10}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PaginableGenericListResultBaseStatsResultDTO"}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/stats/{employeeId}/question/{questionId}":{"get":{"tags":["Question Stats"],"description":"Get's the stats of a question of the company of an employee","operationId":"getHierarchyStatsForQuestion","parameters":[{"name":"questionId","in":"path","description":"Id of the question to be retrieved","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/BaseStatsResultDTO"}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/stats/{employeeId}/hierarchies":{"get":{"tags":["Stats"],"description":"Get's the HI of all the leaf departments of the company of an employee","operationId":"getHierarchyStatsForQuestion_1","parameters":[{"name":"from","in":"query","required":false,"schema":{"type":"integer","format":"int64"}},{"name":"to","in":"query","required":false,"schema":{"type":"integer","format":"int64"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/HIHierarchyStatsDTO"}}}}}},"deprecated":true,"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/questions/{employeeId}/{questionId}":{"get":{"tags":["Questions"],"description":"Get's the requested question","operationId":"getQuestion_1","parameters":[{"name":"questionId","in":"path","description":"Id of the question to be retrieved","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/QuestionDTO"}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/notifications/{employeeId}":{"get":{"tags":["Notifications"],"description":"Lists all the notifications of the logged employee","operationId":"getEmployeeNotifications","parameters":[{"name":"from","in":"query","required":false,"schema":{"type":"integer","format":"int32","default":0}},{"name":"to","in":"query","required":false,"schema":{"type":"integer","format":"int32","default":10}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PaginableGenericListResultEmployeeNotificationDTO"}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/notifications/{employeeId}/count/new":{"get":{"tags":["Notifications"],"description":"Get the number of new notifications since las visit","operationId":"getNewNotificationsCount","responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EmployeeNotificationCountDTO"}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/me/{employeeId}":{"get":{"tags":["Me (deprecated)"],"description":"Get's the the status and  of the logged person","operationId":"getHFMeStatusOverview","responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/MeOverviewDTO"}}}}},"deprecated":true,"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/me/{employeeId}/status":{"get":{"tags":["Me (deprecated)"],"description":"Get's ME status (new content, update, etc)","operationId":"getMeStatus","responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/MeStatusDTO"}}}}},"deprecated":true,"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/me/{employeeId}/report":{"get":{"tags":["Me Personal Report"],"description":"Get's the las personal report header the user","operationId":"getPersonalEngagementReportHeader","responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/MePersonalReportHeaderDTO"}}}}},"deprecated":true,"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/me/{employeeId}/report/{reportId}/read":{"get":{"tags":["Me Personal Report"],"description":"Get's a personal report of the user by Id","operationId":"getPersonalEngagementReport","parameters":[{"name":"reportId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/MePersonalReportDTO"}}}}},"deprecated":true,"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/me/{employeeId}/report/status":{"get":{"tags":["Me Personal Report"],"description":"Get's the personal report status for the current month","operationId":"getPersonalEngagementReportStatus","responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/MePersonalReportStatusDTO"}}}}},"deprecated":true,"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/me/{employeeId}/report/read":{"get":{"tags":["Me Personal Report"],"description":"Get's the last personal report of the user","operationId":"getPersonalEngagementReport_1","responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/MePersonalReportDTO"}}}}},"deprecated":true,"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/me/{employeeId}/hi":{"get":{"tags":["Me (deprecated)"],"description":"Get's the HI resume of the las 30 days","operationId":"getHIStatus","responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/MeHIStatusDTO"}}}}},"deprecated":true,"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/me/{employeeId}/hi/distribution":{"get":{"tags":["Me (deprecated)"],"description":"Get's the HI votes distribution of the las 30 days","operationId":"getHIVotesDistribution","responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/MeHIVotesDistributionDTO"}}}}},"deprecated":true,"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/me/{employeeId}/hi/calendar":{"get":{"tags":["Me Calendar (deprecated)"],"description":"Get's the HI vote calendars, per months","operationId":"getHIVotesDistribution_1","parameters":[{"name":"from","in":"query","required":false,"schema":{"type":"integer","format":"int32","default":0}},{"name":"to","in":"query","required":false,"schema":{"type":"integer","format":"int32","default":4}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PaginableGenericListResultMeHICalendarDTO"}}}}},"deprecated":true,"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/me/{employeeId}/hi/calendar/note/{date}":{"get":{"tags":["Me Calendar (deprecated)"],"description":"Get's the note for a given date","operationId":"getPersonalNote","parameters":[{"name":"date","in":"path","required":true,"schema":{"type":"string","format":"date"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/MeHICalendarNoteDTO"}}}}},"deprecated":true,"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/me/{employeeId}/engagement":{"get":{"tags":["Me (deprecated)"],"description":"Get's the last engagement details","operationId":"getMeEngagement","responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/MeEngagementDTO"}}}}},"deprecated":true,"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/me/{employeeId}/engagement/exists":{"get":{"tags":["Me (deprecated)"],"description":"Check if user has engagement data","operationId":"hasMeEngagementData","responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"boolean"}}}}},"deprecated":true,"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/invitation/info/{token}":{"get":{"tags":["Login"],"description":"Get's some info of a company for a given token","operationId":"getCompanyInfo","parameters":[{"name":"token","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/CompanyInfoDTO"}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/info/{employeeId}/messages":{"get":{"tags":["Info Message"],"description":"Get all the messages","operationId":"getConversation_1","parameters":[{"name":"from","in":"query","required":false,"schema":{"type":"integer","format":"int32","default":0}},{"name":"to","in":"query","required":false,"schema":{"type":"integer","format":"int32","default":9}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PaginableGenericListResultInfoMessageDTO"}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/feedback/{employeeId}/types":{"get":{"tags":["Feedback"],"description":"Retrieves available feedback types for this employee","operationId":"getFeedbackTypes","responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"array","items":{"oneOf":[{"$ref":"#/components/schemas/RecognitionFeedbackTypeDTO"},{"$ref":"#/components/schemas/StandardFeedbackTypeDTO"}]}}}}}},"deprecated":true,"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/feedback/{employeeId}/target/{feedbackType}":{"get":{"tags":["Feedback"],"description":"Retrieves feedback Targets","operationId":"getFeedbackTarget","parameters":[{"name":"feedbackType","in":"path","required":true,"schema":{"$ref":"#/components/schemas/FeedbackType"}},{"name":"text","in":"query","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/FeedbackTargetGroupDTO"}}}}}},"deprecated":true,"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/feedback/{employeeId}/status":{"get":{"tags":["Feedback"],"description":"Get's feedback pending unread comments","operationId":"getFeedbackCountStatus","responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/FeedbackStatusDTO"}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/feedback/{employeeId}/private":{"get":{"tags":["Feedback"],"description":"Retrieves the private feedback for a given user","operationId":"getPrivateFeedback","parameters":[{"name":"from","in":"query","required":false,"schema":{"type":"integer","format":"int32","default":0}},{"name":"to","in":"query","required":false,"schema":{"type":"integer","format":"int32","default":10}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/QuestionCommentsDTO"}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/feedback/{employeeId}/availableTypes":{"get":{"tags":["Feedback"],"description":"Retrieves available feedback types for this employee","operationId":"getAvailableFeedbackTypes","responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"array","items":{"oneOf":[{"$ref":"#/components/schemas/RecognitionFeedbackTypeDTO"},{"$ref":"#/components/schemas/StandardFeedbackTypeDTO"}]}}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/feedback/configuration/{employeeId}/walls":{"get":{"tags":["Feedback Configuration"],"description":"Retrieves available feedback walls to this user","operationId":"getAvailableFeedbackWalls","responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/FeedbackWallDTO"}}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/feedback/configuration/{employeeId}/types":{"get":{"tags":["Feedback Configuration"],"description":"Retrieves available feedback types for this employee to post","operationId":"getFeedbackTypes_1","responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"array","items":{"oneOf":[{"$ref":"#/components/schemas/RecognitionFeedbackTypeDTO"},{"$ref":"#/components/schemas/StandardFeedbackTypeDTO"}]}}}}}},"deprecated":true,"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/feedback/configuration/{employeeId}/target/{feedbackType}":{"get":{"tags":["Feedback Configuration"],"description":"Retrieves feedback Targets","operationId":"getFeedbackTargetForType","parameters":[{"name":"feedbackType","in":"path","required":true,"schema":{"$ref":"#/components/schemas/FeedbackType"}},{"name":"text","in":"query","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/FeedbackTargetGroupDTO"}}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/feedback/configuration/{employeeId}/containers/{feedbackType}":{"get":{"tags":["Feedback Configuration"],"description":"Retrieves feedback Containers","operationId":"getFeedbackContainersForType","parameters":[{"name":"feedbackType","in":"path","required":true,"schema":{"$ref":"#/components/schemas/FeedbackType"}},{"name":"from","in":"query","required":false,"schema":{"type":"integer","format":"int32","default":0}},{"name":"to","in":"query","required":false,"schema":{"type":"integer","format":"int32","default":10}},{"name":"ongoing","in":"query","required":false,"schema":{"type":"boolean","default":false}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PaginableGenericListResultAbstractFeedbackContainerDTO"}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/feedback/configuration/{employeeId}/container/{feedbackContainerId}":{"get":{"tags":["Feedback Configuration"],"description":"Retrieves one feedback Container","operationId":"getFeedbackContainer_1","parameters":[{"name":"feedbackContainerId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/FeedbackIdeaInitiativeContainerDTO"}]}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/feedback/configuration/{employeeId}/availableTypes":{"get":{"tags":["Feedback Configuration"],"description":"Retrieves available feedback types for this employee to post","operationId":"getAvailableFeedbackTypes_1","responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"array","items":{"oneOf":[{"$ref":"#/components/schemas/RecognitionFeedbackTypeDTO"},{"$ref":"#/components/schemas/StandardFeedbackTypeDTO"}]}}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/employee/info/{id}":{"get":{"tags":["Login"],"description":"Get's some info of a company for a given token","operationId":"getEmployeeInfo","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EmployeeDataInfo"}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/conversations/{employeeId}":{"get":{"tags":["Conversations"],"description":"Get all the conversations","operationId":"getConversation_2","parameters":[{"name":"from","in":"query","required":false,"schema":{"type":"integer","format":"int32","default":0}},{"name":"to","in":"query","required":false,"schema":{"type":"integer","format":"int32","default":9}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PaginableGenericListResultConversationDTO"}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/conversations/{employeeId}/status":{"get":{"tags":["Conversations"],"description":"Get's conversation status for that employee","operationId":"getConversationsStatus","responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ConversationsStatusDTO"}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/conversations/{employeeId}/starters/{contextId}":{"get":{"tags":["Conversations"],"description":"Get's conversation starters for a given context","operationId":"getConversationStarters_1","parameters":[{"name":"contextId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"numSuggestions","in":"query","required":false,"schema":{"type":"integer","format":"int32","default":3}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/ConversationStarterSuggestionDTO"}}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/content/{employeeId}/extra/{contentType}":{"get":{"tags":["Extra Content"],"description":"Get's a quote for the employee","operationId":"getExtraContent","parameters":[{"name":"contentType","in":"path","required":true,"schema":{"$ref":"#/components/schemas/ExtraContentType"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/AnniversaryContentDTO"},{"$ref":"#/components/schemas/QuoteContentDTO"}]}}}}},"deprecated":true,"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/quotes/{employeeId}/extra/{contentType}":{"get":{"tags":["Extra Content"],"description":"Get's a quote for the employee","operationId":"getExtraContent_1","parameters":[{"name":"contentType","in":"path","required":true,"schema":{"$ref":"#/components/schemas/ExtraContentType"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/AnniversaryContentDTO"},{"$ref":"#/components/schemas/QuoteContentDTO"}]}}}}},"deprecated":true,"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/content/{employeeId}":{"get":{"tags":["Extra Content"],"description":"Get's a quote for the employee","operationId":"getQuote","responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/AnniversaryContentDTO"},{"$ref":"#/components/schemas/QuoteContentDTO"}]}}}}},"deprecated":true,"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/quotes/{employeeId}":{"get":{"tags":["Extra Content"],"description":"Get's a quote for the employee","operationId":"getQuote_1","responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/AnniversaryContentDTO"},{"$ref":"#/components/schemas/QuoteContentDTO"}]}}}}},"deprecated":true,"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/configuration/{employeeId}/company":{"get":{"tags":["Configuration"],"description":"Get's the  employees current participation configuration.  ","operationId":"getEmployeeCompanyConfiguration","responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ParticipationProfileConfigurationDTO"}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/comments/{employeeId}/{commentId}":{"get":{"tags":["Comments"],"description":"Convenience method for retrieves a single comment","operationId":"getSingleEmployeeComment","parameters":[{"name":"commentId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EmployeeCommentDTO"}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/comments/{employeeId}/filters":{"get":{"tags":["Comments"],"description":"Recovers available filters for question","operationId":"getEmployeeCommentsAvailableFilters","responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object"}}}}},"deprecated":true,"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/comments/{employeeId}/actions":{"get":{"tags":["Comments"],"description":"Recovers available actions for the question comments","operationId":"getEmployeeCommentsAvailableActions","parameters":[{"name":"questionId","in":"query","required":false,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/QuestionCommentActionsDTO"}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/chat/{employeeId}/history/{type}":{"get":{"tags":["Chat"],"description":"Get's the historic chat messages for a given employee","operationId":"getChatHistoryMessages","parameters":[{"name":"type","in":"path","required":true,"schema":{"$ref":"#/components/schemas/ChatType"}},{"name":"from","in":"query","required":false,"schema":{"type":"integer","format":"int32","default":0}},{"name":"to","in":"query","required":false,"schema":{"type":"integer","format":"int32","default":10}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PaginableGenericListResultChatItemDTO"}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/announcements/{employeeId}/status":{"get":{"tags":["Announcements"],"description":"Get's announcements status (unread, expiring soon, etc.) for that employee","operationId":"getAnnouncementsStatus","responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AnnouncementStatusDTO"}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/announcements/{employeeId}/sections":{"get":{"tags":["Announcement Sections"],"description":"Returns a list of sections of announcements container ","operationId":"getAnnouncementsSections","responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/AnnouncementSectionDTO"}}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/announcements/{employeeId}/sections/{sectionId}":{"get":{"tags":["Announcement Sections"],"description":"Returns the configuration of a given section","operationId":"getAnnouncementsSectionById","parameters":[{"name":"sectionId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AnnouncementSectionDTO"}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/announcements/{employeeId}/read/{id}":{"get":{"tags":["Announcements"],"description":"Get's only one announcement","operationId":"getAnnouncementById","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AnnouncementForEmployeeDTO"}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/announcements/{employeeId}/pending":{"get":{"tags":["Announcements"],"description":"Lists the visible on login announcements of an employee. A maximum of 6 is returned","operationId":"getPendingOnLoginAnnouncements","responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/AnnouncementForEmployeeDTO"}}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/announcements/{employeeId}/header/{id}":{"get":{"tags":["Announcements"],"description":"Get's only one announcement header","operationId":"getEmployeeAnnouncementHeaderById","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AnnouncementHeaderForEmployeeDTO"}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/employee/announcements/{employeeId}/categories":{"get":{"tags":["Announcements"],"description":" Get's the list of announcement categories","operationId":"getEmployeeAnnouncementCategories","responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/AnnouncementCategoryDTO"}}}}}},"security":[{"employeeAPISessionId":[]}]}},"/api/v1/company/{companyId}":{"get":{"tags":["company-resource"],"operationId":"getCompanyById","parameters":[{"name":"companyId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/CompanyDTO"}}}}},"security":[{"companyAPISessionId":[]}]},"delete":{"tags":["company-resource"],"operationId":"deleteCompany","parameters":[{"name":"companyId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"secret","in":"query","required":false,"schema":{"type":"string","default":""}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/UserDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/user/me":{"get":{"tags":["user-profile-resource"],"operationId":"getUserProfile","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/LoginResponse"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/user/appToken":{"get":{"tags":["user-profile-resource"],"operationId":"retrieveAppCode","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/UserAppActivationTokenDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/timesheet/{companyId}/user/{employeeId}/history":{"get":{"tags":["Company Timesheet"],"summary":"Get timesheet history for a specific user","description":"Retrieves the timesheet history for a specific employee in a company. Supports pagination and date filtering.","operationId":"getCompanyUserTimesheetHistory","parameters":[{"name":"companyId","in":"path","description":"Company ID","required":true,"schema":{"type":"string"}},{"name":"employeeId","in":"path","description":"Employee ID","required":true,"schema":{"type":"string"}},{"name":"from","in":"query","description":"Starting index for pagination (default: 0)","required":false,"schema":{"type":"integer","default":0}},{"name":"to","in":"query","description":"Ending index for pagination (default: 10)","required":false,"schema":{"type":"integer","default":10}},{"name":"dateFrom","in":"query","description":"Start date filter (format: ddMMyyyy)","required":false,"schema":{"type":"string","format":"date"}},{"name":"dateTo","in":"query","description":"End date filter (format: ddMMyyyy)","required":false,"schema":{"type":"string","format":"date"}}],"responses":{"200":{"description":"Successfully retrieved user timesheet history","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PeriodTimesheetDTO"}}}}}}},"/api/v1/company/timesheet/{companyId}/history":{"get":{"tags":["Company Timesheet"],"summary":"Get timesheet history for a company","description":"Retrieves the timesheet history for all employees in a company. Supports pagination and date filtering.","operationId":"getCompanyTimesheetHistory","parameters":[{"name":"companyId","in":"path","description":"Company ID","required":true,"schema":{"type":"string"}},{"name":"from","in":"query","description":"Starting index for pagination (default: 0)","required":false,"schema":{"type":"integer","default":0}},{"name":"to","in":"query","description":"Ending index for pagination (default: 10)","required":false,"schema":{"type":"integer","default":10}},{"name":"dateFrom","in":"query","description":"Start date filter (format: ddMMyyyy)","required":false,"schema":{"type":"string","format":"date"}},{"name":"dateTo","in":"query","description":"End date filter (format: ddMMyyyy)","required":false,"schema":{"type":"string","format":"date"}}],"responses":{"200":{"description":"Successfully retrieved timesheet history","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PeriodTimesheetDTO"}}}}}}},"/api/v1/company/surveys/templates":{"get":{"tags":["survey-resource"],"operationId":"getSurveyTemplates_1","parameters":[{"name":"categoryId","in":"query","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/SurveyTemplateDTO"}}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/surveys/templates/{templateId}":{"get":{"tags":["survey-resource"],"operationId":"getSurveyTemplate_1","parameters":[{"name":"templateId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SurveyTemplateDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/surveys/templates/categories":{"get":{"tags":["survey-resource"],"operationId":"getTemplateSurveyCategories","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/SurveyTemplateCategoryDTO"}}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/surveys/reports/{surveyId}/{roundId}":{"get":{"tags":["survey-report-resource"],"operationId":"listReports","parameters":[{"name":"surveyId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"roundId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/SurveyReportSimpleDTO"}}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/surveys/reports/{reportId}":{"get":{"tags":["survey-report-resource"],"operationId":"getReportById","parameters":[{"name":"reportId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SurveyReportDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/stats/user/{userId}/questions":{"get":{"tags":["user-stats-resource"],"operationId":"countQuestionsByUser","parameters":[{"name":"userId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"from","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"query","required":false,"schema":{"type":"string","format":"date-time"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/QuestionsByUsersStatsDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/stats/user/{userId}/announcements":{"get":{"tags":["user-stats-resource"],"operationId":"deleteCompanyAnnouncement_1","parameters":[{"name":"userId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"from","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"query","required":false,"schema":{"type":"string","format":"date-time"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/AnnouncementByUserStatsDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/stats/surveys/{surveyId}":{"get":{"tags":["survey-stats-resource"],"operationId":"getSurveyLastResults","parameters":[{"name":"surveyId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"roundId","in":"query","required":false,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"from","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"hierarchyId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"filters","in":"query","required":false,"schema":{"type":"string"}},{"name":"groupId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"questionResults","in":"query","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SurveyPeriodResultDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/stats/surveys/{surveyId}/grouping/{groupingType}":{"get":{"tags":["survey-stats-resource"],"operationId":"getSurveyGroupResults","parameters":[{"name":"surveyId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"roundId","in":"query","required":false,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"from","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"groupingType","in":"path","required":true,"schema":{"$ref":"#/components/schemas/GroupingType"}},{"name":"hierarchyId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"filters","in":"query","required":false,"schema":{"type":"string"}},{"name":"groupId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"questionResults","in":"query","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/GroupingResultDTOSurveyGroupingResultDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/stats/surveys/{surveyId}/evolution":{"get":{"tags":["survey-stats-resource"],"operationId":"getSurveyEvolutionResults","parameters":[{"name":"surveyId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"roundId","in":"query","required":false,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"from","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"hierarchyId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"filters","in":"query","required":false,"schema":{"type":"string"}},{"name":"groupId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"questionResults","in":"query","required":false,"schema":{"type":"string"}},{"name":"grouping","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DateGroupingTypes","default":"MONTH"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SurveyEvolutionResultDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/stats/scoresV2/{scoreId}":{"get":{"tags":["scores-stats-resource"],"operationId":"getScoreResult","parameters":[{"name":"scoreId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"to","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"hierarchyIds","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"filters","in":"query","required":false,"schema":{"type":"string"}},{"name":"groupId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"grouping","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DateGroupingTypes","default":"MONTH"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ScoreStatsV2DTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/stats/scoresV2/individual/{to}/{personalToken}":{"get":{"tags":["scores-stats-resource"],"operationId":"getScoresPersonalIndividualStats","parameters":[{"name":"to","in":"path","required":true,"schema":{"type":"string","format":"date-time"}},{"name":"personalToken","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/ScorePersonalStatsResultDTO"}}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/stats/scoresV2/impact/hi":{"get":{"tags":["scores-stats-resource"],"operationId":"getHIImpactScores","parameters":[{"name":"from","in":"query","required":true,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"query","required":true,"schema":{"type":"string","format":"date-time"}},{"name":"model","in":"query","required":false,"schema":{"$ref":"#/components/schemas/ScoresModel","default":"CORE"}},{"name":"hierarchyIds","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"filters","in":"query","required":false,"schema":{"type":"string"}},{"name":"groupId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/ScoreImpactResultDTO"}}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/stats/scoresV2/impact/enps":{"get":{"tags":["scores-stats-resource"],"operationId":"getENPSImpactScores","parameters":[{"name":"from","in":"query","required":true,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"query","required":true,"schema":{"type":"string","format":"date-time"}},{"name":"model","in":"query","required":false,"schema":{"$ref":"#/components/schemas/ScoresModel","default":"CORE"}},{"name":"hierarchyIds","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"filters","in":"query","required":false,"schema":{"type":"string"}},{"name":"groupId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/ScoreImpactResultDTO"}}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/stats/scoresV2/grouping/{groupingType}":{"get":{"tags":["scores-stats-resource"],"operationId":"getScoresGroupResults","parameters":[{"name":"scoreId","in":"query","required":false,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"to","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"groupingType","in":"path","required":true,"schema":{"$ref":"#/components/schemas/GroupingType"}},{"name":"hierarchyIds","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"model","in":"query","required":false,"schema":{"$ref":"#/components/schemas/ScoresModel","default":"CORE"}},{"name":"filters","in":"query","required":false,"schema":{"type":"string"}},{"name":"groupId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"grouping","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DateGroupingTypes","default":"MONTH"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/GroupingResultDTOScoreStatsGroupingResulsDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/stats/recognition":{"get":{"tags":["recognition-stats-resource"],"operationId":"getRecognitionStats","parameters":[{"name":"from","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"hierarchyId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"filters","in":"query","required":false,"schema":{"type":"string"}},{"name":"groupId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"valueIds","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/RecognitionAggregatedResultDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/stats/recognition/ranking/target":{"get":{"tags":["recognition-stats-resource"],"operationId":"getRecognitionTargetRankingStats","parameters":[{"name":"from","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"hierarchyIds","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"filters","in":"query","required":false,"schema":{"type":"string"}},{"name":"groupId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"valueIds","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/RecognitionRankingDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/stats/recognition/ranking/source":{"get":{"tags":["recognition-stats-resource"],"operationId":"getRecognitionSourceRankingStats","parameters":[{"name":"from","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"hierarchyIds","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"filters","in":"query","required":false,"schema":{"type":"string"}},{"name":"groupId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"valueIds","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/RecognitionRankingDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/stats/questions":{"get":{"tags":["questions-stats-resource"],"operationId":"getCompanyQuestionsRangeStats","parameters":[{"name":"from","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"hierarchyId","in":"query","required":false,"schema":{"type":"string"}},{"name":"questionId","in":"query","required":true,"schema":{"type":"string"}},{"name":"filters","in":"query","required":false,"schema":{"type":"string"}},{"name":"groupId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/QuestionStatsResultDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/stats/participation/grouping/{groupingType}":{"get":{"tags":["participation-stats-resource"],"operationId":"getParticipationGroupResults","parameters":[{"name":"from","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"hierarchyIds","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"groupId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"filters","in":"query","required":false,"schema":{"type":"string"}},{"name":"groupingType","in":"path","required":true,"schema":{"$ref":"#/components/schemas/GroupingType"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/GroupingResultDTOParticipationGroupingResultDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/stats/participation/from/{from}/to/{to}":{"get":{"tags":["participation-stats-resource"],"operationId":"getParticipationPeriodStats","parameters":[{"name":"from","in":"path","required":true,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"path","required":true,"schema":{"type":"string","format":"date-time"}},{"name":"hierarchyIds","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"groupId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"filters","in":"query","required":false,"schema":{"type":"string"}},{"name":"grouping","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DateGroupingTypes","default":"DAY"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ParticipationPeriodDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/stats/participation/distribution/from/{from}/to/{to}":{"get":{"tags":["participation-stats-resource"],"operationId":"getParticipationDistributionStats","parameters":[{"name":"from","in":"path","required":true,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"path","required":true,"schema":{"type":"string","format":"date-time"}},{"name":"hierarchyIds","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"groupId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"filters","in":"query","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ParticipationDistributionDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/stats/innovation":{"get":{"tags":["innovation-stats-resource"],"operationId":"getInnovationStats","parameters":[{"name":"from","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"hierarchyIds","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"filters","in":"query","required":false,"schema":{"type":"string"}},{"name":"groupId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/InnovationAggregatedResultDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/stats/innovation/ranking":{"get":{"tags":["innovation-stats-resource"],"operationId":"getInnovationRankingStats","parameters":[{"name":"from","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"hierarchyId","in":"query","required":false,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"filters","in":"query","required":false,"schema":{"type":"string"}},{"name":"groupId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"type","in":"query","required":false,"schema":{"type":"string","enum":["USER","HIERARCHY"]}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/InnovationRankingResultDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/stats/hi":{"get":{"tags":["hi-stats-resource"],"operationId":"getCompanyHIStats_1","parameters":[{"name":"from","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"hierarchyIds","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"filters","in":"query","required":false,"schema":{"type":"string"}},{"name":"groupId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"grouping","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DateGroupingTypes","default":"DAY"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/HiStatsResultDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/stats/hi/personal/{from}/{to}/{personalToken}":{"get":{"tags":["hi-stats-resource"],"operationId":"getPersonalHI","parameters":[{"name":"from","in":"path","required":true,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"path","required":true,"schema":{"type":"string","format":"date-time"}},{"name":"personalToken","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/IndividualHIStatsResultMemberDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/stats/hi/individual/{from}/{to}":{"get":{"tags":["hi-stats-resource"],"operationId":"getHIIndividualStats","parameters":[{"name":"from","in":"path","required":true,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"path","required":true,"schema":{"type":"string","format":"date-time"}},{"name":"hierarchyIds","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"filters","in":"query","required":false,"schema":{"type":"string"}},{"name":"groupId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/IndividualHIStatsResultsDTO"}}}}},"deprecated":true,"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/stats/hi/grouping/{groupingType}":{"get":{"tags":["hi-stats-resource"],"operationId":"getScoresGroupResults_1","parameters":[{"name":"from","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"groupingType","in":"path","required":true,"schema":{"$ref":"#/components/schemas/GroupingType"}},{"name":"hierarchyIds","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"filters","in":"query","required":false,"schema":{"type":"string"}},{"name":"groupId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"grouping","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DateGroupingTypes","default":"DAY"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/GroupingResultDTOHIGroupingStatsDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/stats/hi/correlation/{scoreId}/{from}/{to}":{"get":{"tags":["hi-stats-resource"],"operationId":"getHIScoreCorrelationStats","parameters":[{"name":"scoreId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"from","in":"path","required":true,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"path","required":true,"schema":{"type":"string","format":"date-time"}},{"name":"hierarchyIds","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"filters","in":"query","required":false,"schema":{"type":"string"}},{"name":"groupId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/CorrelationHIResultItemDTO"}}}}},"deprecated":true,"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/stats/hi/correlation/{from}/{to}":{"get":{"tags":["hi-stats-resource"],"operationId":"getHICorrelationStats","parameters":[{"name":"from","in":"path","required":true,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"path","required":true,"schema":{"type":"string","format":"date-time"}},{"name":"hierarchyIds","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"filters","in":"query","required":false,"schema":{"type":"string"}},{"name":"groupId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/CorrelationHIResultDTO"}}}}},"deprecated":true,"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/stats/hi/classification":{"get":{"tags":["hi-stats-resource"],"operationId":"getHIClassificationFunnel","parameters":[{"name":"from","in":"query","required":true,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"query","required":true,"schema":{"type":"string","format":"date-time"}},{"name":"hierarchyIds","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"filters","in":"query","required":false,"schema":{"type":"string"}},{"name":"groupId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"grouping","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DateGroupingTypes","default":"MONTH"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/HIClassificationStatsDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/stats/feedback/from/{from}/to/{to}":{"get":{"tags":["feedback-stats-resource"],"operationId":"getFeedbackStats","parameters":[{"name":"from","in":"path","required":true,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"path","required":true,"schema":{"type":"string","format":"date-time"}},{"name":"hierarchyId","in":"query","required":false,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"filters","in":"query","required":false,"schema":{"type":"string"}},{"name":"groupId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/FeedbackStats"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/stats/enps":{"get":{"tags":["enps-stats-resource"],"operationId":"getENPStats","parameters":[{"name":"from","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"hierarchyIds","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"filters","in":"query","required":false,"schema":{"type":"string"}},{"name":"groupId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"grouping","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DateGroupingTypes","default":"QUARTER"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ENPSStatsDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/stats/enps/personal/{from}/{to}/{personalToken}":{"get":{"tags":["enps-stats-resource"],"operationId":"getLastPersonalENPS","parameters":[{"name":"from","in":"path","required":true,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"path","required":true,"schema":{"type":"string","format":"date-time"}},{"name":"personalToken","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/IndividualENPSStatsResultMemberDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/stats/enps/individual/{from}/{to}":{"get":{"tags":["enps-stats-resource"],"operationId":"getENPSIndividualStats","parameters":[{"name":"from","in":"path","required":true,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"path","required":true,"schema":{"type":"string","format":"date-time"}},{"name":"hierarchyIds","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"filters","in":"query","required":false,"schema":{"type":"string"}},{"name":"groupId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/IndividualENPSStatsResultsDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/stats/enps/grouping/{groupingType}":{"get":{"tags":["enps-stats-resource"],"operationId":"getENPSGroupResults","parameters":[{"name":"to","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"groupingType","in":"path","required":true,"schema":{"$ref":"#/components/schemas/GroupingType"}},{"name":"hierarchyId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"filters","in":"query","required":false,"schema":{"type":"string"}},{"name":"groupId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"grouping","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DateGroupingTypes","default":"QUARTER"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/GroupingResultDTOENPSGroupingStatsDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/stats/enps/classification":{"get":{"tags":["enps-stats-resource"],"operationId":"getENPSClassification","parameters":[{"name":"to","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"hierarchyIds","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"filters","in":"query","required":false,"schema":{"type":"string"}},{"name":"groupId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"grouping","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DateGroupingTypes","default":"QUARTER"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ENPSClassificationStatsDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/stats/employees":{"get":{"tags":["employee-stats-resource"],"operationId":"getEmployeeStats","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/EmployeeStatsDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/stats/comments":{"get":{"tags":["comments-stats-resource"],"operationId":"getCommentStats","parameters":[{"name":"from","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"questionId","in":"query","required":false,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"hierarchyId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}},{"name":"filters","in":"query","required":false,"schema":{"type":"string"}},{"name":"groupId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"commentText","in":"query","required":false,"schema":{"type":"string"}},{"name":"hasCompanyReply","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"hasReplies","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"hasConversation","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"hasSignature","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"ratings","in":"query","required":false,"schema":{"type":"array","items":{"type":"integer","format":"int32"},"uniqueItems":true}},{"name":"tags","in":"query","required":false,"schema":{"type":"array","items":{"type":"string"},"uniqueItems":true}},{"name":"feedbackTypes","in":"query","required":false,"schema":{"type":"array","items":{"$ref":"#/components/schemas/FeedbackType"},"uniqueItems":true}},{"name":"sameAuthorAs","in":"query","required":false,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"excludePrivate","in":"query","required":false,"schema":{"type":"boolean","default":false}},{"name":"privated","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"containerId","in":"query","required":false,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"statTypes","in":"query","required":false,"schema":{"type":"array","items":{"$ref":"#/components/schemas/CommentsStatTypes"},"uniqueItems":true}},{"name":"voeCategories","in":"query","required":false,"schema":{"type":"array","items":{"type":"string"},"uniqueItems":true}},{"name":"positivenessFrom","in":"query","required":false,"schema":{"type":"integer","format":"int32"}},{"name":"positivenessTo","in":"query","required":false,"schema":{"type":"integer","format":"int32"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/CommentsDateStatsDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/stats/comments/voe":{"get":{"tags":["comments-stats-resource"],"operationId":"getCommentVOEStats","parameters":[{"name":"from","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"questionId","in":"query","required":false,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"hierarchyId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}},{"name":"filters","in":"query","required":false,"schema":{"type":"string"}},{"name":"groupId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"commentText","in":"query","required":false,"schema":{"type":"string"}},{"name":"hasCompanyReply","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"hasReplies","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"hasConversation","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"hasSignature","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"ratings","in":"query","required":false,"schema":{"type":"array","items":{"type":"integer","format":"int32"},"uniqueItems":true}},{"name":"tags","in":"query","required":false,"schema":{"type":"array","items":{"type":"string"},"uniqueItems":true}},{"name":"feedbackTypes","in":"query","required":false,"schema":{"type":"array","items":{"$ref":"#/components/schemas/FeedbackType"},"uniqueItems":true}},{"name":"sameAuthorAs","in":"query","required":false,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"excludePrivate","in":"query","required":false,"schema":{"type":"boolean","default":false}},{"name":"privated","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"containerId","in":"query","required":false,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"voeCategories","in":"query","required":false,"schema":{"type":"array","items":{"type":"string"},"uniqueItems":true}},{"name":"positivenessFrom","in":"query","required":false,"schema":{"type":"integer","format":"int32"}},{"name":"positivenessTo","in":"query","required":false,"schema":{"type":"integer","format":"int32"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/VoeCategoryCountDTO"}}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/stats/activation/to/{to}":{"get":{"tags":["activation-stats-resource"],"operationId":"getActivationOnDate","parameters":[{"name":"to","in":"path","required":true,"schema":{"type":"string","format":"date-time"}},{"name":"hierarchyIds","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"groupId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"filters","in":"query","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ActivationResult"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/stats/activation/resume/from/{from}/to/{to}":{"get":{"tags":["activation-stats-resource"],"operationId":"getActivationResumePeriodStats","parameters":[{"name":"from","in":"path","required":true,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"path","required":true,"schema":{"type":"string","format":"date-time"}},{"name":"hierarchyIds","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"groupId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"filters","in":"query","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ActivationPeriodResumeResultDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/stats/activation/grouping/{groupingType}":{"get":{"tags":["activation-stats-resource"],"operationId":"getActivationGroupResults","parameters":[{"name":"from","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"hierarchyIds","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"groupId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"filters","in":"query","required":false,"schema":{"type":"string"}},{"name":"groupingType","in":"path","required":true,"schema":{"$ref":"#/components/schemas/GroupingType"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/GroupingResultDTOActivationGroupingResultDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/stats/activation/from/{from}/to/{to}":{"get":{"tags":["activation-stats-resource"],"operationId":"getActivationPeriodStats","parameters":[{"name":"from","in":"path","required":true,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"path","required":true,"schema":{"type":"string","format":"date-time"}},{"name":"hierarchyIds","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"groupId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"filters","in":"query","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ActivationPeriodResult"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/sso":{"get":{"tags":["sso-config-resource"],"summary":"Get current SSO configuration","operationId":"getConfig","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/SSOConfigResponse"}}}}},"security":[{"companyAPISessionId":[]}]},"delete":{"tags":["sso-config-resource"],"summary":"Remove SSO configuration","operationId":"deleteConfig","responses":{"204":{"description":"No Content"}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/shift/{companyId}":{"get":{"tags":["Company Shift"],"summary":"Get shifts for a company","description":"Retrieves all shift records for a company. Supports pagination.","operationId":"getCompanyShifts","parameters":[{"name":"companyId","in":"path","description":"Company ID","required":true,"schema":{"type":"string"}},{"name":"from","in":"query","description":"Starting index for pagination (default: 0)","required":false,"schema":{"type":"integer","default":0}},{"name":"to","in":"query","description":"Ending index for pagination (default: 10)","required":false,"schema":{"type":"integer","default":10}}],"responses":{"200":{"description":"Successfully retrieved shifts","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShiftDTO"}}}}}}},"/api/v1/company/scores":{"get":{"tags":["scores-resource"],"operationId":"getCompanyScores","parameters":[{"name":"model","in":"query","required":false,"schema":{"$ref":"#/components/schemas/ScoresModel","default":"CORE"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/ScoreDTO"}}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/scores/{scoreId}":{"get":{"tags":["scores-resource"],"operationId":"getScore","parameters":[{"name":"scoreId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ScoreDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/scores/insights":{"get":{"tags":["score-insights-resource"],"operationId":"computeNewInsights","parameters":[{"name":"dateGrouping","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DateGroupingTypes","default":"MONTH"}},{"name":"to","in":"query","required":false,"schema":{"type":"string","format":"date-time"}}],"responses":{"400":{"description":"Bad Request","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorMessage"}}}},"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/EngagementInsightDTO"}}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/scores/insights/{insightId}/impacts":{"get":{"tags":["score-insights-resource"],"operationId":"getInsightImpacts","parameters":[{"name":"insightId","in":"path","required":true,"schema":{"type":"string"}},{"name":"to","in":"query","required":true,"schema":{"type":"string","format":"date-time"}},{"name":"grouping","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DateGroupingTypes","default":"MONTH"}},{"name":"groupingType","in":"query","required":true,"schema":{"$ref":"#/components/schemas/GroupingType"}}],"responses":{"400":{"description":"Bad Request","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorMessage"}}}},"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/EngagementInsightsImpactDTO"},"uniqueItems":true}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/scores/export":{"get":{"tags":["scores-resource"],"operationId":"downloadFile","responses":{"200":{"description":"OK","content":{"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet":{"schema":{"type":"string","format":"binary"}},"*/*":{"schema":{"type":"string","format":"binary"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/scores/ai/{scoreId}":{"get":{"tags":["scores-ai-resource"],"operationId":"generateScoreResult","parameters":[{"name":"scoreId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"to","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"hierarchyId","in":"query","required":false,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"filters","in":"query","required":false,"schema":{"type":"string"}},{"name":"groupId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"grouping","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DateGroupingTypes","default":"MONTH"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ScoresAIResumeWithActionsDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/recognition":{"get":{"tags":["recognition-resource"],"operationId":"getEmployeeCommentsForQuestion_1","parameters":[{"name":"from","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"commentId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"hierarchyId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}},{"name":"fromComment","in":"query","required":false,"schema":{"type":"integer","format":"int32","default":0}},{"name":"toComment","in":"query","required":false,"schema":{"type":"integer","format":"int32","default":10}},{"name":"commentText","in":"query","required":false,"schema":{"type":"string"}},{"name":"sortOrder","in":"query","required":false,"schema":{"$ref":"#/components/schemas/CommentsSortOrder","default":"RECENT"}},{"name":"classifiedStatus","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"hasCompanyReply","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"hasReplies","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"hasSignature","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"hasConversation","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"filters","in":"query","required":false,"schema":{"type":"string"}},{"name":"groupId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"ratings","in":"query","required":false,"schema":{"type":"array","items":{"type":"integer","format":"int32"},"uniqueItems":true}},{"name":"tags","in":"query","required":false,"schema":{"type":"array","items":{"type":"string"},"uniqueItems":true}},{"name":"feedbackTypes","in":"query","required":false,"schema":{"type":"array","items":{"$ref":"#/components/schemas/FeedbackType"},"uniqueItems":true}},{"name":"sameAuthorAs","in":"query","required":false,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"excludePrivate","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"privated","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"valueIds","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"voeCategories","in":"query","required":false,"schema":{"type":"array","items":{"type":"string"},"uniqueItems":true}},{"name":"positivenessFrom","in":"query","required":false,"schema":{"type":"integer","format":"int32"}},{"name":"positivenessTo","in":"query","required":false,"schema":{"type":"integer","format":"int32"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/CommentsDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/ranking/managers":{"get":{"tags":["manager-ranking-resource"],"operationId":"getManagersRanking","parameters":[{"name":"from","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"grouping","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DateGroupingTypes","default":"MONTH"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ManagerRankingResultDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/ranking/managers/export":{"get":{"tags":["manager-ranking-resource"],"operationId":"generateManagersRankingReports","parameters":[{"name":"from","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"grouping","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DateGroupingTypes","default":"MONTH"}}],"responses":{"200":{"description":"OK"}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/questions/find":{"get":{"tags":["questions-resource"],"operationId":"getCompanyQuestions","parameters":[{"name":"type","in":"query","required":false,"schema":{"type":"array","items":{"$ref":"#/components/schemas/QuestionType"},"uniqueItems":true}},{"name":"questionId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"status","in":"query","required":false,"schema":{"type":"array","items":{"$ref":"#/components/schemas/QuestionStatus"},"uniqueItems":true}},{"name":"activationType","in":"query","required":false,"schema":{"type":"array","items":{"$ref":"#/components/schemas/ActivationRuleType"},"uniqueItems":true}},{"name":"questionText","in":"query","required":false,"schema":{"type":"string"}},{"name":"fromQuestion","in":"query","required":false,"schema":{"type":"integer","format":"int32","default":0}},{"name":"toQuestion","in":"query","required":false,"schema":{"type":"integer","format":"int32","default":10}},{"name":"onlyInHierarchies","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"hierarchyId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"onlyInSegments","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"filters","in":"query","required":false,"schema":{"type":"string"}},{"name":"onlyInGroups","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"groupId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PaginableGenericResultListQuestionDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/people/template/{templateType}":{"get":{"tags":["people-resource"],"operationId":"downloadTemplate","parameters":[{"name":"templateType","in":"path","required":true,"schema":{"type":"string","enum":["INVITE","DELETE","UPDATE"]}}],"responses":{"200":{"description":"OK","content":{"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet":{"schema":{"type":"string","format":"binary"}},"*/*":{"schema":{"type":"string","format":"binary"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/people/profile":{"get":{"tags":["people-resource"],"operationId":"getPersonProfile","parameters":[{"name":"id","in":"query","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PersonProfileDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/people/find":{"get":{"tags":["people-resource"],"operationId":"getEmployees_1","parameters":[{"name":"from","in":"query","required":false,"schema":{"type":"integer","format":"int32","default":0}},{"name":"to","in":"query","required":false,"schema":{"type":"integer","format":"int32","default":10}},{"name":"activated","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"deleted","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"hierarchyId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}},{"name":"filters","in":"query","required":false,"schema":{"type":"string"}},{"name":"groupId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"text","in":"query","required":false,"schema":{"type":"string"}},{"name":"mailStatus","in":"query","required":false,"schema":{"type":"string","enum":["CORRECT","UNKNOWN","FAILING","UNSUBSCRIBED"]}},{"name":"role","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","enum":["ADVISOR","ADMIN","RESPONSIBLE","PUBLIC","MANAGER","EMPLOYEE"]},"uniqueItems":true}},{"name":"orderBy","in":"query","required":false,"schema":{"type":"string","enum":["email","name","addedOn","invitedOn"]}},{"name":"orderDesc","in":"query","required":false,"schema":{"type":"boolean","default":false}},{"name":"withoutArea","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"incompleteProfile","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"blocked","in":"query","required":false,"schema":{"type":"boolean"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PaginableGenericListResultPersonDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/milestone/from/{from}/to/{to}":{"get":{"tags":["milestone-resource"],"operationId":"getCompanyMilestones","parameters":[{"name":"from","in":"path","required":true,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"path","required":true,"schema":{"type":"string","format":"date-time"}},{"name":"hierarchyIds","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"private","in":"query","required":false,"schema":{"type":"boolean","default":false}},{"name":"type","in":"query","required":false,"schema":{"$ref":"#/components/schemas/MilestoneType","default":"OTHER"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/MilestoneDTO"}}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/me":{"get":{"tags":["login-resource"],"operationId":"me","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/UserMeDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/list":{"get":{"tags":["company-resource"],"operationId":"getCompanies","parameters":[{"name":"name","in":"query","required":false,"schema":{"type":"string"}},{"name":"from","in":"query","required":false,"schema":{"type":"integer","format":"int32","default":0}},{"name":"to","in":"query","required":false,"schema":{"type":"integer","format":"int32","default":10}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PaginableGenericResultListCompanyDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/insights/scores":{"get":{"tags":["insights-resource"],"operationId":"getScoreInsights","parameters":[{"name":"scoreId","in":"query","required":false,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"from","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"fromInsight","in":"query","required":false,"schema":{"type":"integer","format":"int32","default":0}},{"name":"toInsight","in":"query","required":false,"schema":{"type":"integer","format":"int32","default":10}},{"name":"hierarchyId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"filters","in":"query","required":false,"schema":{"type":"string"}},{"name":"groupId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"sort","in":"query","required":false,"schema":{"type":"string","enum":["NEGATIVE","POSITIVE"]}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PaginableGenericResultListAbstractInsightDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/hptoken/{code}":{"get":{"tags":["login-resource"],"operationId":"getHpToken","parameters":[{"name":"code","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/HPTokenDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/feedback":{"get":{"tags":["feedback-resource"],"operationId":"getComments","parameters":[{"name":"from","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"commentId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"questionId","in":"query","required":false,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"hierarchyId","in":"query","required":false,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"fromComment","in":"query","required":false,"schema":{"type":"integer","format":"int32","default":0}},{"name":"toComment","in":"query","required":false,"schema":{"type":"integer","format":"int32","default":10}},{"name":"commentText","in":"query","required":false,"schema":{"type":"string"}},{"name":"sortOrder","in":"query","required":false,"schema":{"$ref":"#/components/schemas/CommentsSortOrder","default":"RECENT"}},{"name":"classifiedStatus","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"hasCompanyReply","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"hasReplies","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"hasSignature","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"hasConversation","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"filters","in":"query","required":false,"schema":{"type":"string"}},{"name":"groupId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"ratings","in":"query","required":false,"schema":{"type":"array","items":{"type":"integer","format":"int32"},"uniqueItems":true}},{"name":"tags","in":"query","required":false,"schema":{"type":"array","items":{"type":"string"},"uniqueItems":true}},{"name":"feedbackTypes","in":"query","required":false,"schema":{"type":"array","items":{"$ref":"#/components/schemas/FeedbackType"},"uniqueItems":true}},{"name":"sameAuthorAs","in":"query","required":false,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"excludePrivate","in":"query","required":false,"schema":{"type":"boolean"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/CommentsDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/feedback/surveys/{surveyId}":{"get":{"tags":["survey-feedback-resource"],"operationId":"getSurveyFeedback","parameters":[{"name":"surveyId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"roundId","in":"query","required":false,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"from","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"fromComment","in":"query","required":false,"schema":{"type":"integer","format":"int32","default":0}},{"name":"toComment","in":"query","required":false,"schema":{"type":"integer","format":"int32","default":1}},{"name":"hierarchyIds","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"filters","in":"query","required":false,"schema":{"type":"string"}},{"name":"groupId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"questionId","in":"query","required":false,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"questionResults","in":"query","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PaginableGenericResultListSurveyFeedbackCommentDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/feedback/scores":{"get":{"tags":["scores-feedback-resource"],"operationId":"getScoreFeedback","parameters":[{"name":"scoreId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"factorId","in":"query","required":false,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"model","in":"query","required":false,"schema":{"$ref":"#/components/schemas/ScoresModel","default":"CORE"}},{"name":"from","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"fromComment","in":"query","required":false,"schema":{"type":"integer","format":"int32","default":0}},{"name":"toComment","in":"query","required":false,"schema":{"type":"integer","format":"int32","default":1}},{"name":"hierarchyIds","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"filters","in":"query","required":false,"schema":{"type":"string"}},{"name":"groupId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"commentText","in":"query","required":false,"schema":{"type":"string"}},{"name":"sortOrder","in":"query","required":false,"schema":{"$ref":"#/components/schemas/CommentsSortOrder","default":"RECENT"}},{"name":"hasCompanyReply","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"hasReplies","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"hasConversation","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"hasSignature","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"ratings","in":"query","required":false,"schema":{"type":"array","items":{"type":"integer","format":"int32"},"uniqueItems":true}},{"name":"tags","in":"query","required":false,"schema":{"type":"array","items":{"type":"string"},"uniqueItems":true}},{"name":"voeCategories","in":"query","required":false,"schema":{"type":"array","items":{"type":"string"},"uniqueItems":true}},{"name":"positivenessFrom","in":"query","required":false,"schema":{"type":"integer","format":"int32"}},{"name":"positivenessTo","in":"query","required":false,"schema":{"type":"integer","format":"int32"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PaginableGenericResultListScoreFeedbackCommentDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/feedback/enps":{"get":{"tags":["enps-feedback-resource"],"operationId":"getScoreFeedback_1","parameters":[{"name":"from","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"fromComment","in":"query","required":false,"schema":{"type":"integer","format":"int32","default":0}},{"name":"toComment","in":"query","required":false,"schema":{"type":"integer","format":"int32","default":1}},{"name":"hierarchyId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"filters","in":"query","required":false,"schema":{"type":"string"}},{"name":"groupId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"commentId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"commentText","in":"query","required":false,"schema":{"type":"string"}},{"name":"sortOrder","in":"query","required":false,"schema":{"$ref":"#/components/schemas/CommentsSortOrder","default":"RECENT"}},{"name":"hasCompanyReply","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"hasReplies","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"hasConversation","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"hasSignature","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"ratings","in":"query","required":false,"schema":{"type":"array","items":{"type":"integer","format":"int32"},"uniqueItems":true}},{"name":"tags","in":"query","required":false,"schema":{"type":"array","items":{"type":"string"},"uniqueItems":true}},{"name":"voeCategories","in":"query","required":false,"schema":{"type":"array","items":{"type":"string"},"uniqueItems":true}},{"name":"positivenessFrom","in":"query","required":false,"schema":{"type":"integer","format":"int32"}},{"name":"positivenessTo","in":"query","required":false,"schema":{"type":"integer","format":"int32"}},{"name":"eNPSClassification","in":"query","required":false,"schema":{"type":"array","items":{"$ref":"#/components/schemas/ENPSClassification"},"uniqueItems":true}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PaginableGenericResultListENPSFeedbackCommentDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/feedback/configuration/status/{feedbackType}":{"get":{"tags":["feedback-configuration-status-type-resource"],"operationId":"getFeedbackStatusTypes","parameters":[{"name":"feedbackType","in":"path","required":true,"schema":{"$ref":"#/components/schemas/FeedbackType"}},{"name":"archivedStatus","in":"query","required":false,"schema":{"$ref":"#/components/schemas/FeedbackArchivedStatus","default":"ANY"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/FeedbackStatusType"}}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/feedback/classification":{"get":{"tags":["classification-feedback-resource"],"operationId":"getClassificationFeedback","parameters":[{"name":"classification","in":"query","required":false,"schema":{"$ref":"#/components/schemas/EmployeeClassificationType"}},{"name":"from","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"fromComment","in":"query","required":false,"schema":{"type":"integer","format":"int32","default":0}},{"name":"toComment","in":"query","required":false,"schema":{"type":"integer","format":"int32","default":1}},{"name":"hierarchyId","in":"query","required":false,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"filters","in":"query","required":false,"schema":{"type":"string"}},{"name":"groupId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PaginableGenericResultListClassificationFeedbackDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/feedback/announcements/{announcementId}":{"get":{"tags":["announcements-feedback-resource"],"operationId":"getAnnouncementFeedback","parameters":[{"name":"announcementId","in":"path","required":true,"schema":{"type":"string"}},{"name":"from","in":"query","required":false,"schema":{"type":"integer","format":"int32","default":0}},{"name":"to","in":"query","required":false,"schema":{"type":"integer","format":"int32","default":10}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PaginableGenericListResultAnnouncementFeedbackCommentDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/enps/configuration/schedules":{"get":{"tags":["enps-configuration-resource"],"operationId":"getCurrentStatus","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ENPSCurrentStatus"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/conversations":{"get":{"tags":["conversations-resource"],"operationId":"findConversations","parameters":[{"name":"lastMessageFrom","in":"query","required":false,"schema":{"$ref":"#/components/schemas/UserType"}},{"name":"fromConversation","in":"query","required":false,"schema":{"type":"integer","format":"int32","default":0}},{"name":"toConversation","in":"query","required":false,"schema":{"type":"integer","format":"int32","default":10}},{"name":"from","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"sortOrder","in":"query","required":false,"schema":{"type":"string","default":"RECENT","enum":["RECENT","OLDER"]}},{"name":"ownerId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"personEncryptedId","in":"query","required":false,"schema":{"type":"string"}},{"name":"types","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","enum":["COMMENT","ENGAGEMENT_STATUS"]},"uniqueItems":true}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PaginableGenericListResultConversationDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/conversations/preview":{"get":{"tags":["conversations-resource"],"operationId":"findParticipantPreviewConversations","parameters":[{"name":"fromConversation","in":"query","required":false,"schema":{"type":"integer","format":"int32","default":0}},{"name":"toConversation","in":"query","required":false,"schema":{"type":"integer","format":"int32","default":10}},{"name":"from","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"sortOrder","in":"query","required":false,"schema":{"type":"string","default":"RECENT","enum":["RECENT","OLDER"]}},{"name":"personEncryptedId","in":"query","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PaginableGenericListResultConversationHeaderDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/conversations/pending":{"get":{"tags":["conversations-resource"],"operationId":"getPendingConversations","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ConversationPendingDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/config/status":{"get":{"tags":["company-config-resource"],"operationId":"getCompanyConfigStatus","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"type":"string","enum":["NO_EMPLOYEES","NO_ENOUGH_ACTIVE_EMPLOYEES","NO_ENOUGH_ACTIVE_EMPLOYEES_PRELAUNCH","NO_ALL_EMPLOYEES_HAVE_NAMES","HIERARCHIES_NO_MINIMUM","NO_ANNOUNCEMENTS_PRELAUNCH","NO_HIERARCHIES_PRELAUNCH"]}}}}}},"deprecated":true,"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/config/domain/{domain}":{"get":{"tags":["company-config-resource"],"operationId":"checkDomain","parameters":[{"name":"domain","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/CheckDomainResponse"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/comments":{"get":{"tags":["comments-resource"],"operationId":"getEmployeeCommentsForQuestion_2","parameters":[{"name":"from","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"fromComment","in":"query","required":false,"schema":{"type":"integer","format":"int32","default":0}},{"name":"toComment","in":"query","required":false,"schema":{"type":"integer","format":"int32","default":10}},{"name":"commentId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"questionId","in":"query","required":false,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"hierarchyId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}},{"name":"searchText","in":"query","required":false,"schema":{"type":"string"}},{"name":"sortOrder","in":"query","required":false,"schema":{"$ref":"#/components/schemas/CommentsSortOrder","default":"RECENT"}},{"name":"hasCompanyReply","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"hasReplies","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"hasConversation","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"hasSignature","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"filters","in":"query","required":false,"schema":{"type":"string"}},{"name":"groupId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"ratings","in":"query","required":false,"schema":{"type":"array","items":{"type":"integer","format":"int32"},"uniqueItems":true}},{"name":"tags","in":"query","required":false,"schema":{"type":"array","items":{"type":"string"},"uniqueItems":true}},{"name":"feedbackTypes","in":"query","required":false,"schema":{"type":"array","items":{"$ref":"#/components/schemas/FeedbackType"},"uniqueItems":true}},{"name":"sameAuthorAs","in":"query","required":false,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"excludePrivate","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"privated","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"containerId","in":"query","required":false,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"voeCategories","in":"query","required":false,"schema":{"type":"array","items":{"type":"string"},"uniqueItems":true}},{"name":"positivenessFrom","in":"query","required":false,"schema":{"type":"integer","format":"int32"}},{"name":"positivenessTo","in":"query","required":false,"schema":{"type":"integer","format":"int32"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/CommentsDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/comments/{commentId}":{"get":{"tags":["comments-resource"],"operationId":"getSingleEmployeeComment_1","parameters":[{"name":"commentId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/BaseCommentDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/comments/tags":{"get":{"tags":["comments-tags-resource"],"operationId":"returnAvailableTags","parameters":[{"name":"tagText","in":"query","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"type":"string"},"uniqueItems":true}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/check/{email}":{"get":{"tags":["login-resource"],"operationId":"checkMail_1","parameters":[{"name":"email","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/CheckMailResponse"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/anonymity":{"get":{"tags":["anonymity-resource"],"operationId":"getAnonymityResult","parameters":[{"name":"from","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"hierarchyId","in":"query","required":false,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"filters","in":"query","required":false,"schema":{"type":"string"}},{"name":"groupId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/AnonymityDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/announcements/{sectionId}/resume":{"get":{"tags":["announcements-resource"],"operationId":"geAnnouncementResumes","parameters":[{"name":"sectionId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"announcementText","in":"query","required":false,"schema":{"type":"string"}},{"name":"fromAnnouncement","in":"query","required":false,"schema":{"type":"integer","format":"int32","default":0}},{"name":"toAnnouncement","in":"query","required":false,"schema":{"type":"integer","format":"int32","default":10}},{"name":"from","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"hierarchyId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"filters","in":"query","required":false,"schema":{"type":"string"}},{"name":"groupId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"categoryId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"pinned","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"signed","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"hfSigned","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"published","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"draft","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"archived","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"reply","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"hasReactions","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"hasComments","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"orderBy","in":"query","required":false,"schema":{"$ref":"#/components/schemas/AnnouncementOrder"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PaginableGenericListResultAnnouncementExternalDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/announcements/sections":{"get":{"tags":["announcements-sections-resource"],"operationId":"getAnnouncementsSections_1","parameters":[{"name":"announcementText","in":"query","required":false,"schema":{"type":"string"}},{"name":"from","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"hierarchyId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"filters","in":"query","required":false,"schema":{"type":"string"}},{"name":"groupId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"categoryId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"pinned","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"signed","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"hfSigned","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"published","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"draft","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"archived","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"reply","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"hasReactions","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"hasComments","in":"query","required":false,"schema":{"type":"boolean"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/AnnouncementSectionDTO"}}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/announcements/sections/{sectionId}":{"get":{"tags":["announcements-sections-resource"],"operationId":"getAnnouncementSections","parameters":[{"name":"sectionId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"announcementText","in":"query","required":false,"schema":{"type":"string"}},{"name":"from","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"hierarchyId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"filters","in":"query","required":false,"schema":{"type":"string"}},{"name":"groupId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"categoryId","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}},{"name":"pinned","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"signed","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"hfSigned","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"published","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"draft","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"archived","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"reply","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"hasReactions","in":"query","required":false,"schema":{"type":"boolean"}},{"name":"hasComments","in":"query","required":false,"schema":{"type":"boolean"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/AnnouncementSectionDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/announcements/read/{announcementId}":{"get":{"tags":["announcements-resource"],"operationId":"getEmployeeAnnouncementById","parameters":[{"name":"announcementId","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/AnnouncementExternalDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/announcements/configuration/default":{"get":{"tags":["announcements-configuration-resource"],"operationId":"getDefaultConfigurationForSectionType","parameters":[{"name":"sectionTypeId","in":"query","required":false,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/AnnouncementsConfigurationDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/advisor/people/locate":{"get":{"tags":["people-advisor-resource"],"operationId":"locateEmployees","parameters":[{"name":"text","in":"query","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/PersonAdvisorDTO"}}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/activity":{"get":{"tags":["manager-activity-resource"],"operationId":"getManagerActivity","parameters":[{"name":"from","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"query","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"fromActivity","in":"query","required":false,"schema":{"type":"integer","format":"int32","default":0}},{"name":"toActivity","in":"query","required":false,"schema":{"type":"integer","format":"int32","default":10}},{"name":"types","in":"query","required":false,"schema":{"type":"array","items":{"$ref":"#/components/schemas/ActivityType"},"uniqueItems":true}},{"name":"hierarchyId","in":"query","required":false,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PaginableGenericResultListManagerActivityDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/mcp/login":{"get":{"tags":["mcp-login-controller"],"operationId":"loginForm","parameters":[{"name":"csrfToken","in":"query","required":true,"schema":{"$ref":"#/components/schemas/CsrfToken"}}],"responses":{"200":{"description":"OK","content":{"text/html":{"schema":{"type":"string"}}}}}}},"/api/mcp/login":{"get":{"tags":["mcp-login-controller"],"operationId":"loginForm_1","parameters":[{"name":"csrfToken","in":"query","required":true,"schema":{"$ref":"#/components/schemas/CsrfToken"}}],"responses":{"200":{"description":"OK","content":{"text/html":{"schema":{"type":"string"}}}}}}},"/mcp/error":{"get":{"tags":["mcp-login-controller"],"operationId":"errorPage","responses":{"200":{"description":"OK","content":{"text/html":{"schema":{"type":"string"}}}}}}},"/api/mcp/error":{"get":{"tags":["mcp-login-controller"],"operationId":"errorPage_1","responses":{"200":{"description":"OK","content":{"text/html":{"schema":{"type":"string"}}}}}}},"/.well-known/oauth-protected-resource":{"get":{"tags":["mcp-o-auth-protected-resource-metadata-controller"],"operationId":"metadata","responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"object","additionalProperties":{}}}}}}}},"/api/v1/company/comments/status/{commentId}":{"delete":{"tags":["comments-status-resource"],"operationId":"removeStatus","parameters":[{"name":"commentId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/BaseCommentDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/company/comments/container/{commentId}":{"delete":{"tags":["comments-container-resource"],"operationId":"removeContainer","parameters":[{"name":"commentId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/BaseCommentDTO"}}}}},"security":[{"companyAPISessionId":[]}]}},"/api/v1/tasks/testScoreDetail":{"get":{"tags":["tasks-controller"],"operationId":"testListManagers","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"put":{"tags":["tasks-controller"],"operationId":"testListManagers_2","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"post":{"tags":["tasks-controller"],"operationId":"testListManagers_1","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"delete":{"tags":["tasks-controller"],"operationId":"testListManagers_3","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"options":{"tags":["tasks-controller"],"operationId":"testListManagers_6","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"head":{"tags":["tasks-controller"],"operationId":"testListManagers_5","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"patch":{"tags":["tasks-controller"],"operationId":"testListManagers_4","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}}},"/api/v1/tasks/testNotification":{"get":{"tags":["tasks-controller"],"operationId":"testNotification","responses":{"200":{"description":"OK"}}},"put":{"tags":["tasks-controller"],"operationId":"testNotification_2","responses":{"200":{"description":"OK"}}},"post":{"tags":["tasks-controller"],"operationId":"testNotification_1","responses":{"200":{"description":"OK"}}},"delete":{"tags":["tasks-controller"],"operationId":"testNotification_3","responses":{"200":{"description":"OK"}}},"options":{"tags":["tasks-controller"],"operationId":"testNotification_6","responses":{"200":{"description":"OK"}}},"head":{"tags":["tasks-controller"],"operationId":"testNotification_5","responses":{"200":{"description":"OK"}}},"patch":{"tags":["tasks-controller"],"operationId":"testNotification_4","responses":{"200":{"description":"OK"}}}},"/api/v1/tasks/testENPSNaturgy":{"get":{"tags":["tasks-controller"],"operationId":"test","parameters":[{"name":"from","in":"query","required":false,"schema":{"type":"string"}},{"name":"to","in":"query","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"put":{"tags":["tasks-controller"],"operationId":"test_2","parameters":[{"name":"from","in":"query","required":false,"schema":{"type":"string"}},{"name":"to","in":"query","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"post":{"tags":["tasks-controller"],"operationId":"test_1","parameters":[{"name":"from","in":"query","required":false,"schema":{"type":"string"}},{"name":"to","in":"query","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"delete":{"tags":["tasks-controller"],"operationId":"test_3","parameters":[{"name":"from","in":"query","required":false,"schema":{"type":"string"}},{"name":"to","in":"query","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"options":{"tags":["tasks-controller"],"operationId":"test_6","parameters":[{"name":"from","in":"query","required":false,"schema":{"type":"string"}},{"name":"to","in":"query","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"head":{"tags":["tasks-controller"],"operationId":"test_5","parameters":[{"name":"from","in":"query","required":false,"schema":{"type":"string"}},{"name":"to","in":"query","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"patch":{"tags":["tasks-controller"],"operationId":"test_4","parameters":[{"name":"from","in":"query","required":false,"schema":{"type":"string"}},{"name":"to","in":"query","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}}},"/api/v1/tasks/suggestObjectives":{"get":{"tags":["tasks-controller"],"operationId":"getTasks","parameters":[{"name":"objective","in":"query","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"put":{"tags":["tasks-controller"],"operationId":"getTasks_2","parameters":[{"name":"objective","in":"query","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"post":{"tags":["tasks-controller"],"operationId":"getTasks_1","parameters":[{"name":"objective","in":"query","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"delete":{"tags":["tasks-controller"],"operationId":"getTasks_3","parameters":[{"name":"objective","in":"query","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"options":{"tags":["tasks-controller"],"operationId":"getTasks_6","parameters":[{"name":"objective","in":"query","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"head":{"tags":["tasks-controller"],"operationId":"getTasks_5","parameters":[{"name":"objective","in":"query","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"patch":{"tags":["tasks-controller"],"operationId":"getTasks_4","parameters":[{"name":"objective","in":"query","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}}},"/api/v1/tasks/simulateSubmitRatting":{"get":{"tags":["tasks-controller"],"operationId":"testMeRatting","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"put":{"tags":["tasks-controller"],"operationId":"testMeRatting_2","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"post":{"tags":["tasks-controller"],"operationId":"testMeRatting_1","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"delete":{"tags":["tasks-controller"],"operationId":"testMeRatting_3","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"options":{"tags":["tasks-controller"],"operationId":"testMeRatting_6","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"head":{"tags":["tasks-controller"],"operationId":"testMeRatting_5","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"patch":{"tags":["tasks-controller"],"operationId":"testMeRatting_4","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}}},"/api/v1/tasks/simulateProcessor":{"get":{"tags":["tasks-controller"],"operationId":"te","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"put":{"tags":["tasks-controller"],"operationId":"te_2","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"post":{"tags":["tasks-controller"],"operationId":"te_1","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"delete":{"tags":["tasks-controller"],"operationId":"te_3","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"options":{"tags":["tasks-controller"],"operationId":"te_6","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"head":{"tags":["tasks-controller"],"operationId":"te_5","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"patch":{"tags":["tasks-controller"],"operationId":"te_4","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}}},"/api/v1/tasks/sendPushes":{"get":{"tags":["tasks-controller"],"operationId":"sendPushes","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"put":{"tags":["tasks-controller"],"operationId":"sendPushes_2","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"post":{"tags":["tasks-controller"],"operationId":"sendPushes_1","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"delete":{"tags":["tasks-controller"],"operationId":"sendPushes_3","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"options":{"tags":["tasks-controller"],"operationId":"sendPushes_6","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"head":{"tags":["tasks-controller"],"operationId":"sendPushes_5","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"patch":{"tags":["tasks-controller"],"operationId":"sendPushes_4","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}}},"/api/v1/tasks/sendPrivateComments/{companyId}":{"get":{"tags":["tasks-controller"],"operationId":"generateReport","parameters":[{"name":"companyId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"400":{"description":"Bad Request","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorMessage"}}}},"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"put":{"tags":["tasks-controller"],"operationId":"generateReport_2","parameters":[{"name":"companyId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"400":{"description":"Bad Request","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorMessage"}}}},"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"post":{"tags":["tasks-controller"],"operationId":"generateReport_1","parameters":[{"name":"companyId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"400":{"description":"Bad Request","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorMessage"}}}},"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"delete":{"tags":["tasks-controller"],"operationId":"generateReport_3","parameters":[{"name":"companyId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"400":{"description":"Bad Request","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorMessage"}}}},"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"options":{"tags":["tasks-controller"],"operationId":"generateReport_6","parameters":[{"name":"companyId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"400":{"description":"Bad Request","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorMessage"}}}},"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"head":{"tags":["tasks-controller"],"operationId":"generateReport_5","parameters":[{"name":"companyId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"400":{"description":"Bad Request","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorMessage"}}}},"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"patch":{"tags":["tasks-controller"],"operationId":"generateReport_4","parameters":[{"name":"companyId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"400":{"description":"Bad Request","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorMessage"}}}},"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}}},"/api/v1/tasks/sendPrivateComment/{companyId}":{"get":{"tags":["tasks-controller"],"operationId":"sendPrivate","parameters":[{"name":"companyId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"400":{"description":"Bad Request","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorMessage"}}}},"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"put":{"tags":["tasks-controller"],"operationId":"sendPrivate_2","parameters":[{"name":"companyId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"400":{"description":"Bad Request","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorMessage"}}}},"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"post":{"tags":["tasks-controller"],"operationId":"sendPrivate_1","parameters":[{"name":"companyId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"400":{"description":"Bad Request","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorMessage"}}}},"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"delete":{"tags":["tasks-controller"],"operationId":"sendPrivate_3","parameters":[{"name":"companyId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"400":{"description":"Bad Request","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorMessage"}}}},"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"options":{"tags":["tasks-controller"],"operationId":"sendPrivate_6","parameters":[{"name":"companyId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"400":{"description":"Bad Request","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorMessage"}}}},"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"head":{"tags":["tasks-controller"],"operationId":"sendPrivate_5","parameters":[{"name":"companyId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"400":{"description":"Bad Request","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorMessage"}}}},"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"patch":{"tags":["tasks-controller"],"operationId":"sendPrivate_4","parameters":[{"name":"companyId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"400":{"description":"Bad Request","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorMessage"}}}},"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}}},"/api/v1/tasks/sendAnnouncemnetPushes":{"get":{"tags":["tasks-controller"],"operationId":"sendAnnouncemnetPushes","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"put":{"tags":["tasks-controller"],"operationId":"sendAnnouncemnetPushes_2","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"post":{"tags":["tasks-controller"],"operationId":"sendAnnouncemnetPushes_1","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"delete":{"tags":["tasks-controller"],"operationId":"sendAnnouncemnetPushes_3","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"options":{"tags":["tasks-controller"],"operationId":"sendAnnouncemnetPushes_6","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"head":{"tags":["tasks-controller"],"operationId":"sendAnnouncemnetPushes_5","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"patch":{"tags":["tasks-controller"],"operationId":"sendAnnouncemnetPushes_4","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}}},"/api/v1/tasks/retryFailedReports":{"get":{"tags":["tasks-controller"],"operationId":"retryFailedReports","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"put":{"tags":["tasks-controller"],"operationId":"retryFailedReports_2","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"post":{"tags":["tasks-controller"],"operationId":"retryFailedReports_1","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"delete":{"tags":["tasks-controller"],"operationId":"retryFailedReports_3","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"options":{"tags":["tasks-controller"],"operationId":"retryFailedReports_6","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"head":{"tags":["tasks-controller"],"operationId":"retryFailedReports_5","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"patch":{"tags":["tasks-controller"],"operationId":"retryFailedReports_4","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}}},"/api/v1/tasks/reframeScoreQuestions":{"get":{"tags":["tasks-controller"],"operationId":"sendPushes_7","parameters":[{"name":"companyId","in":"query","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"objective","in":"query","required":false,"schema":{"type":"string","default":"none, use all questions"}},{"name":"moment","in":"query","required":false,"schema":{"type":"string","default":"none, use all questions"}},{"name":"tone","in":"query","required":false,"schema":{"type":"string","default":"same as the original question"}},{"name":"numberOfQuestions","in":"query","required":false,"schema":{"type":"integer","format":"int32","default":5}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"put":{"tags":["tasks-controller"],"operationId":"sendPushes_9","parameters":[{"name":"companyId","in":"query","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"objective","in":"query","required":false,"schema":{"type":"string","default":"none, use all questions"}},{"name":"moment","in":"query","required":false,"schema":{"type":"string","default":"none, use all questions"}},{"name":"tone","in":"query","required":false,"schema":{"type":"string","default":"same as the original question"}},{"name":"numberOfQuestions","in":"query","required":false,"schema":{"type":"integer","format":"int32","default":5}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"post":{"tags":["tasks-controller"],"operationId":"sendPushes_8","parameters":[{"name":"companyId","in":"query","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"objective","in":"query","required":false,"schema":{"type":"string","default":"none, use all questions"}},{"name":"moment","in":"query","required":false,"schema":{"type":"string","default":"none, use all questions"}},{"name":"tone","in":"query","required":false,"schema":{"type":"string","default":"same as the original question"}},{"name":"numberOfQuestions","in":"query","required":false,"schema":{"type":"integer","format":"int32","default":5}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"delete":{"tags":["tasks-controller"],"operationId":"sendPushes_10","parameters":[{"name":"companyId","in":"query","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"objective","in":"query","required":false,"schema":{"type":"string","default":"none, use all questions"}},{"name":"moment","in":"query","required":false,"schema":{"type":"string","default":"none, use all questions"}},{"name":"tone","in":"query","required":false,"schema":{"type":"string","default":"same as the original question"}},{"name":"numberOfQuestions","in":"query","required":false,"schema":{"type":"integer","format":"int32","default":5}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"options":{"tags":["tasks-controller"],"operationId":"sendPushes_13","parameters":[{"name":"companyId","in":"query","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"objective","in":"query","required":false,"schema":{"type":"string","default":"none, use all questions"}},{"name":"moment","in":"query","required":false,"schema":{"type":"string","default":"none, use all questions"}},{"name":"tone","in":"query","required":false,"schema":{"type":"string","default":"same as the original question"}},{"name":"numberOfQuestions","in":"query","required":false,"schema":{"type":"integer","format":"int32","default":5}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"head":{"tags":["tasks-controller"],"operationId":"sendPushes_12","parameters":[{"name":"companyId","in":"query","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"objective","in":"query","required":false,"schema":{"type":"string","default":"none, use all questions"}},{"name":"moment","in":"query","required":false,"schema":{"type":"string","default":"none, use all questions"}},{"name":"tone","in":"query","required":false,"schema":{"type":"string","default":"same as the original question"}},{"name":"numberOfQuestions","in":"query","required":false,"schema":{"type":"integer","format":"int32","default":5}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"patch":{"tags":["tasks-controller"],"operationId":"sendPushes_11","parameters":[{"name":"companyId","in":"query","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"objective","in":"query","required":false,"schema":{"type":"string","default":"none, use all questions"}},{"name":"moment","in":"query","required":false,"schema":{"type":"string","default":"none, use all questions"}},{"name":"tone","in":"query","required":false,"schema":{"type":"string","default":"same as the original question"}},{"name":"numberOfQuestions","in":"query","required":false,"schema":{"type":"integer","format":"int32","default":5}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}}},"/api/v1/tasks/generateEngagementReport":{"get":{"tags":["tasks-controller"],"operationId":"generateEngagementReport","parameters":[{"name":"email","in":"query","required":true,"schema":{"type":"string"}},{"name":"to","in":"query","required":true,"schema":{"type":"string","format":"date-time"}}],"responses":{"400":{"description":"Bad Request","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorMessage"}}}},"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"put":{"tags":["tasks-controller"],"operationId":"generateEngagementReport_2","parameters":[{"name":"email","in":"query","required":true,"schema":{"type":"string"}},{"name":"to","in":"query","required":true,"schema":{"type":"string","format":"date-time"}}],"responses":{"400":{"description":"Bad Request","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorMessage"}}}},"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"post":{"tags":["tasks-controller"],"operationId":"generateEngagementReport_1","parameters":[{"name":"email","in":"query","required":true,"schema":{"type":"string"}},{"name":"to","in":"query","required":true,"schema":{"type":"string","format":"date-time"}}],"responses":{"400":{"description":"Bad Request","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorMessage"}}}},"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"delete":{"tags":["tasks-controller"],"operationId":"generateEngagementReport_3","parameters":[{"name":"email","in":"query","required":true,"schema":{"type":"string"}},{"name":"to","in":"query","required":true,"schema":{"type":"string","format":"date-time"}}],"responses":{"400":{"description":"Bad Request","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorMessage"}}}},"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"options":{"tags":["tasks-controller"],"operationId":"generateEngagementReport_6","parameters":[{"name":"email","in":"query","required":true,"schema":{"type":"string"}},{"name":"to","in":"query","required":true,"schema":{"type":"string","format":"date-time"}}],"responses":{"400":{"description":"Bad Request","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorMessage"}}}},"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"head":{"tags":["tasks-controller"],"operationId":"generateEngagementReport_5","parameters":[{"name":"email","in":"query","required":true,"schema":{"type":"string"}},{"name":"to","in":"query","required":true,"schema":{"type":"string","format":"date-time"}}],"responses":{"400":{"description":"Bad Request","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorMessage"}}}},"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"patch":{"tags":["tasks-controller"],"operationId":"generateEngagementReport_4","parameters":[{"name":"email","in":"query","required":true,"schema":{"type":"string"}},{"name":"to","in":"query","required":true,"schema":{"type":"string","format":"date-time"}}],"responses":{"400":{"description":"Bad Request","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorMessage"}}}},"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}}},"/api/v1/tasks/dumpEmployeeVotes":{"get":{"tags":["tasks-controller"],"operationId":"generateReport_7","parameters":[{"name":"email","in":"query","required":true,"schema":{"type":"string"}},{"name":"from","in":"query","required":true,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"query","required":true,"schema":{"type":"string","format":"date-time"}}],"responses":{"400":{"description":"Bad Request","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorMessage"}}}},"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"put":{"tags":["tasks-controller"],"operationId":"generateReport_9","parameters":[{"name":"email","in":"query","required":true,"schema":{"type":"string"}},{"name":"from","in":"query","required":true,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"query","required":true,"schema":{"type":"string","format":"date-time"}}],"responses":{"400":{"description":"Bad Request","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorMessage"}}}},"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"post":{"tags":["tasks-controller"],"operationId":"generateReport_8","parameters":[{"name":"email","in":"query","required":true,"schema":{"type":"string"}},{"name":"from","in":"query","required":true,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"query","required":true,"schema":{"type":"string","format":"date-time"}}],"responses":{"400":{"description":"Bad Request","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorMessage"}}}},"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"delete":{"tags":["tasks-controller"],"operationId":"generateReport_10","parameters":[{"name":"email","in":"query","required":true,"schema":{"type":"string"}},{"name":"from","in":"query","required":true,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"query","required":true,"schema":{"type":"string","format":"date-time"}}],"responses":{"400":{"description":"Bad Request","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorMessage"}}}},"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"options":{"tags":["tasks-controller"],"operationId":"generateReport_13","parameters":[{"name":"email","in":"query","required":true,"schema":{"type":"string"}},{"name":"from","in":"query","required":true,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"query","required":true,"schema":{"type":"string","format":"date-time"}}],"responses":{"400":{"description":"Bad Request","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorMessage"}}}},"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"head":{"tags":["tasks-controller"],"operationId":"generateReport_12","parameters":[{"name":"email","in":"query","required":true,"schema":{"type":"string"}},{"name":"from","in":"query","required":true,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"query","required":true,"schema":{"type":"string","format":"date-time"}}],"responses":{"400":{"description":"Bad Request","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorMessage"}}}},"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"patch":{"tags":["tasks-controller"],"operationId":"generateReport_11","parameters":[{"name":"email","in":"query","required":true,"schema":{"type":"string"}},{"name":"from","in":"query","required":true,"schema":{"type":"string","format":"date-time"}},{"name":"to","in":"query","required":true,"schema":{"type":"string","format":"date-time"}}],"responses":{"400":{"description":"Bad Request","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorMessage"}}}},"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}}},"/api/v1/tasks/computeClusters/{companyId}":{"get":{"tags":["tasks-controller"],"operationId":"buildClusters","parameters":[{"name":"companyId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"put":{"tags":["tasks-controller"],"operationId":"buildClusters_2","parameters":[{"name":"companyId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"post":{"tags":["tasks-controller"],"operationId":"buildClusters_1","parameters":[{"name":"companyId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"delete":{"tags":["tasks-controller"],"operationId":"buildClusters_3","parameters":[{"name":"companyId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"options":{"tags":["tasks-controller"],"operationId":"buildClusters_6","parameters":[{"name":"companyId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"head":{"tags":["tasks-controller"],"operationId":"buildClusters_5","parameters":[{"name":"companyId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"patch":{"tags":["tasks-controller"],"operationId":"buildClusters_4","parameters":[{"name":"companyId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}}},"/api/v1/tasks/calculatePersonalInsights/{companyId}":{"get":{"tags":["tasks-controller"],"operationId":"calculatePersonalInsights","parameters":[{"name":"companyId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"asOfDate","in":"query","required":true,"schema":{"type":"string","format":"date-time"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"put":{"tags":["tasks-controller"],"operationId":"calculatePersonalInsights_2","parameters":[{"name":"companyId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"asOfDate","in":"query","required":true,"schema":{"type":"string","format":"date-time"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"post":{"tags":["tasks-controller"],"operationId":"calculatePersonalInsights_1","parameters":[{"name":"companyId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"asOfDate","in":"query","required":true,"schema":{"type":"string","format":"date-time"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"delete":{"tags":["tasks-controller"],"operationId":"calculatePersonalInsights_3","parameters":[{"name":"companyId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"asOfDate","in":"query","required":true,"schema":{"type":"string","format":"date-time"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"options":{"tags":["tasks-controller"],"operationId":"calculatePersonalInsights_6","parameters":[{"name":"companyId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"asOfDate","in":"query","required":true,"schema":{"type":"string","format":"date-time"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"head":{"tags":["tasks-controller"],"operationId":"calculatePersonalInsights_5","parameters":[{"name":"companyId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"asOfDate","in":"query","required":true,"schema":{"type":"string","format":"date-time"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}},"patch":{"tags":["tasks-controller"],"operationId":"calculatePersonalInsights_4","parameters":[{"name":"companyId","in":"path","required":true,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"asOfDate","in":"query","required":true,"schema":{"type":"string","format":"date-time"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"string"}}}}}}},"/api/v1/company/advisor/people":{"get":{"tags":["people-advisor-resource"],"operationId":"deletePerson_1","parameters":[{"name":"id","in":"query","required":false,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"email","in":"query","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PersonAdvisorDTO"}}}}},"security":[{"companyAPISessionId":[]}]},"put":{"tags":["people-advisor-resource"],"operationId":"deletePerson_3","parameters":[{"name":"id","in":"query","required":false,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"email","in":"query","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PersonAdvisorDTO"}}}}},"security":[{"companyAPISessionId":[]}]},"post":{"tags":["people-advisor-resource"],"operationId":"deletePerson_2","parameters":[{"name":"id","in":"query","required":false,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"email","in":"query","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PersonAdvisorDTO"}}}}},"security":[{"companyAPISessionId":[]}]},"delete":{"tags":["people-advisor-resource"],"operationId":"deletePerson_4","parameters":[{"name":"id","in":"query","required":false,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"email","in":"query","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PersonAdvisorDTO"}}}}},"security":[{"companyAPISessionId":[]}]},"options":{"tags":["people-advisor-resource"],"operationId":"deletePerson_7","parameters":[{"name":"id","in":"query","required":false,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"email","in":"query","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PersonAdvisorDTO"}}}}},"security":[{"companyAPISessionId":[]}]},"head":{"tags":["people-advisor-resource"],"operationId":"deletePerson_6","parameters":[{"name":"id","in":"query","required":false,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"email","in":"query","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PersonAdvisorDTO"}}}}},"security":[{"companyAPISessionId":[]}]},"patch":{"tags":["people-advisor-resource"],"operationId":"deletePerson_5","parameters":[{"name":"id","in":"query","required":false,"schema":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},{"name":"email","in":"query","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/PersonAdvisorDTO"}}}}},"security":[{"companyAPISessionId":[]}]}}},"components":{"schemas":{"ErrorMessage":{"type":"object","properties":{"errorCode":{"type":"string"},"errorMessage":{"type":"string"},"customMessage":{"type":"string"}}},"MultiValueMap":{"type":"object","additionalProperties":{"type":"array","items":{}},"properties":{"all":{"type":"object","additionalProperties":{},"writeOnly":true},"empty":{"type":"boolean"}}},"Employee":{"type":"object","description":"The details of the employee you want to invite to Happyforce","properties":{"name":{"type":"string","description":"Name of the employee"},"email":{"type":"string","description":"Email of the employee"},"externalId":{"type":"string","description":"External id of the employee"},"hierarchyId":{"type":"string","description":"Area id where this employee belongs","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"profile":{"type":"array","description":"Employee profile data, used for later segmentation","items":{"$ref":"#/components/schemas/EmployeeProfile"},"uniqueItems":true},"groupIds":{"type":"array","description":"List of groups to which this user belongs","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true},"role":{"type":"string","description":"Role of the employee in the company","enum":["ADVISOR","ADMIN","RESPONSIBLE","PUBLIC","MANAGER","EMPLOYEE"]},"managedHierarchies":{"type":"array","description":"List of hierarchies that this employee manages","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}}},"EmployeeProfile":{"type":"object","description":"Entity representing the profile of one of your employees","properties":{"id":{"type":"string","description":"Id of the segmentation property","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"date":{"type":"string","format":"date-time","description":"Date for date type segments"},"valueId":{"type":"string","description":"Value id, for list type segments","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}},"ExternalAuthRequestDTO":{"type":"object","properties":{"params":{"type":"object","additionalProperties":{"type":"string"}}}},"ExternalAuthResponseDTO":{"type":"object","properties":{"redirectURI":{"type":"string"},"message":{"type":"string"},"status":{"type":"string","enum":["SUCCESS","FAILURE","SUCCESS_REDIRECT"]}}},"PeriodTimeSheetType":{"type":"string","description":"Type of timesheet period (active work, vacation, bank holiday, sick leave, indisposition absence, day off)","enum":["ACTIVE","VACATION","BANK_HOLIDAY","SICK_LEAVE","INDISPOSITION_ABSENCE","DAY_OFF"]},"TimesheetUpdateRequestDTO":{"type":"object","description":"Timesheet update data","properties":{"startTime":{"type":"string","format":"date-time","description":"Start date and time of the work period in UTC","example":"2024-01-15T09:00:00.000Z"},"endTime":{"type":"string","format":"date-time","description":"End date and time of the work period in UTC","example":"2024-01-15T17:00:00.000Z"},"periodType":{"$ref":"#/components/schemas/PeriodTimeSheetType","description":"Type of period: ACTIVE, VACATION, BANK_HOLIDAY, SICK_LEAVE, INDISPOSITION_ABSENCE, or DAY_OFF","example":"ACTIVE"},"changeReason":{"type":"string","description":"Reason for updating this timesheet record","example":"Manual correction requested by manager","minLength":1},"timeZone":{"type":"string","description":"IANA timezone ID for this update (e.g. Europe/Madrid). Stored on the timesheet document; start/end times above are still stored as UTC.","example":"Europe/Madrid","minLength":1}},"required":["changeReason","timeZone"]},"PersonTimesheetBreakDTO":{"type":"object","properties":{"startTime":{"type":"string","format":"date-time"},"endTime":{"type":"string","format":"date-time"},"duration":{"type":"integer","format":"int32"}}},"PersonTimesheetChangeDTO":{"type":"object","properties":{"startTime":{"type":"string","format":"date-time"},"endTime":{"type":"string","format":"date-time"},"breaks":{"type":"array","items":{"$ref":"#/components/schemas/PersonTimesheetBreakDTO"}},"periodType":{"$ref":"#/components/schemas/PeriodTimeSheetType"},"changeReason":{"type":"string"},"changedBy":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"changedAt":{"type":"string","format":"date-time"}}},"PersonTimesheetDTO":{"type":"object","description":"DTO representing a person's timesheet entry","properties":{"id":{"type":"string","description":"Timesheet entry ID","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"personId":{"type":"string","description":"Person ID","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"startTime":{"type":"string","format":"date-time","description":"Start time of the timesheet entry"},"endTime":{"type":"string","format":"date-time","description":"End time of the timesheet entry"},"isActive":{"type":"boolean","description":"Whether the timesheet entry is currently active"},"isEditable":{"type":"boolean","description":"Whether the timesheet entry can be edited"},"breaks":{"type":"array","description":"List of break times during this timesheet entry","items":{"$ref":"#/components/schemas/PersonTimesheetBreakDTO"}},"periodType":{"$ref":"#/components/schemas/PeriodTimeSheetType","description":"Type of timesheet period"},"timeZone":{"type":"string","description":"IANA timezone ID stored for this entry when provided by the client"},"changeHistory":{"type":"array","description":"Historical modifications applied to this timesheet entry","items":{"$ref":"#/components/schemas/PersonTimesheetChangeDTO"}}}},"ConversationDTO":{"allOf":[{"$ref":"#/components/schemas/ConversationHeaderDTO"},{"type":"object","properties":{"id":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"type":{"type":"string","enum":["COMMENT","ENGAGEMENT_STATUS"]},"name":{"type":"string"},"commentId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"updated":{"type":"boolean"},"updatedOn":{"type":"string","format":"date-time"},"title":{"type":"string","deprecated":true},"hierarchyName":{"type":"string","deprecated":true},"imagePath":{"type":"string"},"owned":{"type":"boolean"},"signature":{"$ref":"#/components/schemas/SignatureDTO"},"messages":{"type":"array","description":"Messages in this conversation","items":{"$ref":"#/components/schemas/ConversationMessageDTO"}}}}],"description":"Full conversation: header fields plus list of messages."},"ConversationHeaderDTO":{"type":"object","description":"Conversation header: id, type, name, comment id, updated, dates, owner, signature, and messages.","properties":{"id":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"type":{"type":"string","enum":["COMMENT","ENGAGEMENT_STATUS"]},"name":{"type":"string"},"commentId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"updated":{"type":"boolean"},"updatedOn":{"type":"string","format":"date-time"},"title":{"type":"string","deprecated":true},"hierarchyName":{"type":"string","deprecated":true},"imagePath":{"type":"string"},"owned":{"type":"boolean"},"signature":{"$ref":"#/components/schemas/SignatureDTO"},"messages":{"type":"array","items":{"$ref":"#/components/schemas/ConversationMessageDTO"}}}},"ConversationMessageDTO":{"type":"object","description":"Single message in a conversation: date, text, user type, seen, owned, anonymous, signature.","properties":{"date":{"type":"string","format":"date-time","description":"Message date and time"},"message":{"type":"string","description":"Message text"},"userType":{"$ref":"#/components/schemas/UserType","description":"Type of user who sent the message"},"seen":{"type":"boolean","description":"Whether the message has been seen"},"owned":{"type":"boolean","description":"Whether the message is from the current user"},"signature":{"$ref":"#/components/schemas/SignatureDTO","description":"Signature when not anonymous"},"anonymous":{"type":"boolean"}}},"SignatureDTO":{"type":"object","description":"Signature (author) of a comment: id, name, description, and profile image.","properties":{"id":{"type":"string","description":"User ID of the signer","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"name":{"type":"string","description":"Display name of the signer"},"description":{"type":"string","description":"Optional description (e.g. role)"},"profileImagePath":{"type":"string","description":"URL or path to the profile image"}}},"UserType":{"type":"string","description":"Type of user in the system, either an employee or a company user (admin, manager, etc).","enum":["EMPLOYEE","COMPANY_USER"]},"UserNotificationSetting":{"type":"object","properties":{"type":{"type":"string","enum":["PRIVATE_COMMENT_RECEIVED","INAPPROPRIATE_COMMENT_RECEIVED","COMMENT_RECEIVED","QUESTION_FINISHED"]},"frequency":{"type":"string","enum":["IMMEDIATELY","NEVER"]}}},"UserSelfProfileUpdateDTO":{"type":"object","properties":{"name":{"type":"string"},"password":{"type":"string"},"language":{"type":"string"},"mailNotificationSettings":{"type":"array","items":{"$ref":"#/components/schemas/UserNotificationSetting"},"uniqueItems":true},"pushNotificationSettings":{"type":"array","items":{"$ref":"#/components/schemas/UserNotificationSetting"},"uniqueItems":true}}},"LoginResponse":{"type":"object","properties":{"sessionId":{"type":"string"},"companyUser":{"$ref":"#/components/schemas/UserDTO"}}},"UserDTO":{"type":"object","properties":{"id":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"rememberMe":{"type":"boolean"},"multipleCompanies":{"type":"boolean"},"name":{"type":"string"},"role":{"type":"string","enum":["ADVISOR","ADMIN","RESPONSIBLE","PUBLIC","MANAGER","EMPLOYEE"]},"profileImagePath":{"type":"string"},"email":{"type":"string"},"mailStatus":{"type":"string","enum":["SENT","DELIVERED","OPEN","DEFERRAL","HARDBOUNCE","SOFTBOUNCE","SPAM","UNSUB","REJECTED","DELAYED","OTHER"]},"hierarchyIds":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true},"companyId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"language":{"type":"string"},"mailNotificationSettings":{"type":"array","items":{"$ref":"#/components/schemas/UserNotificationSetting"},"uniqueItems":true},"pushNotificationSettings":{"type":"array","items":{"$ref":"#/components/schemas/UserNotificationSetting"},"uniqueItems":true},"addedOn":{"type":"string","format":"date-time"},"requiresPasswordChange":{"type":"boolean"}}},"CharacteristicType":{"type":"string","description":"Type of segmentation characteristic","enum":["DATE","LIST","BOOLEAN"]},"EmployeeCharacteristicValueBase":{"type":"object","description":"Base class for employee characteristic values","discriminator":{"propertyName":"questionType","mapping":{"LIST":"#/components/schemas/EmployeeCharacteristicValueList","DATE":"#/components/schemas/EmployeeCharacteristicValueDate","BOOLEAN":"#/components/schemas/EmployeeCharacteristicValueBoolean"}},"properties":{"characteristicId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"id":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"questionType":{"$ref":"#/components/schemas/CharacteristicType"}}},"EmployeeCharacteristicValueBoolean":{"allOf":[{"$ref":"#/components/schemas/EmployeeCharacteristicValueBase"},{"type":"object","properties":{"value":{"type":"boolean"}}}]},"EmployeeCharacteristicValueDate":{"allOf":[{"$ref":"#/components/schemas/EmployeeCharacteristicValueBase"},{"type":"object","properties":{"date":{"type":"string","format":"date-time"},"value":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}}]},"EmployeeCharacteristicValueList":{"allOf":[{"$ref":"#/components/schemas/EmployeeCharacteristicValueBase"},{"type":"object","properties":{"value":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}}]},"UserComparisonFilterDTO":{"type":"object","properties":{"id":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"userId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"name":{"type":"string"},"hierarchyIds":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true},"groupIds":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true},"characteristics":{"type":"array","items":{"oneOf":[{"$ref":"#/components/schemas/EmployeeCharacteristicValueBoolean"},{"$ref":"#/components/schemas/EmployeeCharacteristicValueDate"},{"$ref":"#/components/schemas/EmployeeCharacteristicValueList"}]},"uniqueItems":true}}},"CompanyTermsAndConditionsDTO":{"type":"object","properties":{"id":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"companyId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"creationDate":{"type":"string","format":"date-time"},"title":{"$ref":"#/components/schemas/MultiLanguage"},"detail":{"$ref":"#/components/schemas/MultiLanguage"},"content":{"$ref":"#/components/schemas/MultiLanguage"},"status":{"$ref":"#/components/schemas/TermsAndConditionsStatus"}}},"MultiLanguage":{"type":"object","properties":{"defaultValue":{"type":"string","minLength":1},"langValues":{"type":"object","additionalProperties":{"type":"string"}},"valid":{"type":"boolean"}},"required":["defaultValue"]},"TermsAndConditionsStatus":{"type":"string","description":"Status of terms and conditions (ACTIVE or ARCHIVED)","enum":["ACTIVE","ARCHIVED"]},"AbstractSurveyQuestion":{"type":"object","description":"Base class for survey questions","discriminator":{"propertyName":"questionType","mapping":{"OPEN":"#/components/schemas/OpenSurveyQuestion","TOPIC":"#/components/schemas/OptionsSurveyQuestion","RANGE":"#/components/schemas/ScaleSurveyQuestion"}},"properties":{"id":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"title":{"$ref":"#/components/schemas/MultiLanguage"},"questionType":{"$ref":"#/components/schemas/QuestionType"},"order":{"type":"integer","format":"int32"},"visible":{"type":"boolean"},"computeInBlock":{"type":"boolean"},"feedbackEnabled":{"type":"boolean"},"mandatory":{"type":"boolean","deprecated":true},"voteMode":{"$ref":"#/components/schemas/QuestionVoteMode"},"representation":{"type":"string","enum":["IMAGES","OPTIONS","MULTIPLE_OPTIONS","FEEDBACK","SCALE","GRADIENT_SLIDE"]},"values":{"type":"array","items":{"$ref":"#/components/schemas/QuestionValue"},"uniqueItems":true}},"required":["questionType","representation","title","voteMode"]},"ActivationCalendarRule":{"type":"object","allOf":[{"$ref":"#/components/schemas/ActivationRule"},{"type":"object","properties":{"ruleExpression":{"type":"string","minLength":1},"startAt":{"type":"string","format":"date-time"},"endAt":{"type":"string","format":"date-time"},"duration":{"type":"integer","format":"int32","minimum":1}}}],"description":"ActivationCalendarRule","required":["ruleExpression","ruleType","startAt"]},"ActivationRecurrentRule":{"type":"object","allOf":[{"$ref":"#/components/schemas/ActivationRule"},{"type":"object","properties":{"cronExpression":{"type":"string","minLength":1},"startAt":{"type":"string","format":"date-time"},"endAt":{"type":"string","format":"date-time"},"duration":{"type":"integer","format":"int32","minimum":1}}}],"description":"ActivationRecurrentRule","required":["cronExpression","ruleType","startAt"]},"ActivationRule":{"type":"object","description":"Base class for all activation rule types","discriminator":{"propertyName":"ruleType","mapping":{"CALENDAR":"#/components/schemas/ActivationCalendarRule","RECURRENT":"#/components/schemas/ActivationRecurrentRule","SINGLE":"#/components/schemas/ActivationSingleRule","CONTINUOUS":"#/components/schemas/ContinuousActivationRule"}},"oneOf":[{"$ref":"#/components/schemas/ActivationCalendarRule"},{"$ref":"#/components/schemas/ActivationRecurrentRule"},{"$ref":"#/components/schemas/ActivationSingleRule"},{"$ref":"#/components/schemas/ContinuousActivationRule"}],"properties":{"ruleType":{"$ref":"#/components/schemas/ActivationRuleType"}},"required":["ruleType"]},"ActivationRuleType":{"type":"string","description":"Type of activation rule for a survey or questionnaire","enum":["SINGLE","RECURRENT","CALENDAR","CONTINUOUS"]},"ActivationSingleRule":{"type":"object","allOf":[{"$ref":"#/components/schemas/ActivationRule"},{"type":"object","properties":{"from":{"type":"string","format":"date-time"},"to":{"type":"string","format":"date-time"}}}],"description":"ActivationSingleRule","required":["ruleType"]},"ContinuousActivationRule":{"type":"object","allOf":[{"$ref":"#/components/schemas/ActivationRule"}],"description":"ContinuousActivationRule","required":["ruleType"]},"OpenSurveyQuestion":{"allOf":[{"$ref":"#/components/schemas/AbstractSurveyQuestion"},{"type":"object","properties":{"requireNotEmpty":{"type":"boolean"}}}],"required":["questionType","representation","title","voteMode"]},"OptionsSurveyQuestion":{"allOf":[{"$ref":"#/components/schemas/AbstractSurveyQuestion"},{"type":"object","properties":{"values":{"type":"array","items":{"$ref":"#/components/schemas/QuestionValue"},"maxItems":2147483647,"minItems":2,"uniqueItems":true},"minSelection":{"type":"integer","format":"int32"},"maxSelection":{"type":"integer","format":"int32"},"multipleChoice":{"type":"boolean"},"minValue":{"$ref":"#/components/schemas/QuestionValue"},"maxValue":{"$ref":"#/components/schemas/QuestionValue"}}}],"required":["questionType","representation","title","voteMode"]},"QuestionType":{"type":"string","description":"Type of question used in company surveys or questionnaires","enum":["GENERAL","TOPIC","OPEN","RANGE"]},"QuestionValue":{"type":"object","properties":{"id":{"type":"integer","format":"int32"},"score":{"type":"integer","format":"int32"},"label":{"$ref":"#/components/schemas/MultiLanguage"},"imageUrl":{"type":"string"},"color":{"type":"string"}},"required":["id","label","score"]},"QuestionVoteMode":{"type":"string","description":"Modes of question voting in a survey or feedback form. Defines whether a question is mandatory, optional, or deferred.","enum":["MANDATORY","OPTIONAL","DEFERRED"]},"ScaleSurveyQuestion":{"allOf":[{"$ref":"#/components/schemas/AbstractSurveyQuestion"},{"type":"object","properties":{"firstValue":{"$ref":"#/components/schemas/QuestionValue"},"lastValue":{"$ref":"#/components/schemas/QuestionValue"},"inverted":{"type":"boolean"}}}],"required":["firstValue","lastValue","questionType","representation","title","voteMode"]},"SurveyBlockDTOAbstractSurveyQuestion":{"type":"object","description":"A survey block containing a list of questions","properties":{"blockId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"title":{"$ref":"#/components/schemas/MultiLanguage"},"description":{"$ref":"#/components/schemas/MultiLanguage"},"questions":{"type":"array","items":{"oneOf":[{"$ref":"#/components/schemas/OpenSurveyQuestion"},{"$ref":"#/components/schemas/OptionsSurveyQuestion"},{"$ref":"#/components/schemas/ScaleSurveyQuestion"}]}}}},"SurveyDTO":{"type":"object","description":"The details of the survey to be created","properties":{"id":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"companyId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"createdOn":{"type":"string","format":"date-time"},"createdBy":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"updatedBy":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"updatedOn":{"type":"string","format":"date-time"},"managerAccessEnabled":{"type":"boolean"},"notAnonymous":{"type":"boolean"},"canUpdate":{"type":"boolean"},"title":{"$ref":"#/components/schemas/MultiLanguage"},"description":{"$ref":"#/components/schemas/MultiLanguage"},"schedulePlan":{"$ref":"#/components/schemas/SurveySchedulePlanDTO"},"rounds":{"type":"array","items":{"$ref":"#/components/schemas/SurveyRoundDTO"}},"blocks":{"type":"array","items":{"$ref":"#/components/schemas/SurveyBlockDTOAbstractSurveyQuestion"},"minItems":1},"status":{"$ref":"#/components/schemas/SurveyStatus"},"hasReports":{"type":"boolean"}},"required":["blocks","title"]},"SurveyRoundDTO":{"type":"object","description":"Survey Round Data Transfer Object","properties":{"id":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"title":{"$ref":"#/components/schemas/MultiLanguage"},"from":{"type":"string","format":"date-time"},"to":{"type":"string","format":"date-time"}}},"SurveySchedulePlanDTO":{"type":"object","description":"The details of the schedule to be updated","properties":{"roundTitle":{"$ref":"#/components/schemas/MultiLanguage"},"appSurvey":{"type":"boolean"},"mailSurvey":{"type":"boolean"},"communicationTitle":{"$ref":"#/components/schemas/MultiLanguage"},"communicationDescription":{"$ref":"#/components/schemas/MultiLanguage"},"activationRule":{"$ref":"#/components/schemas/ActivationRule"},"hierarchyIds":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true},"characteristics":{"type":"array","items":{"oneOf":[{"$ref":"#/components/schemas/EmployeeCharacteristicValueBoolean"},{"$ref":"#/components/schemas/EmployeeCharacteristicValueDate"},{"$ref":"#/components/schemas/EmployeeCharacteristicValueList"}]},"uniqueItems":true},"groupIds":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true},"paused":{"type":"boolean"},"archived":{"type":"boolean"},"mandatory":{"type":"boolean"},"status":{"$ref":"#/components/schemas/SurveyStatus"}},"required":["activationRule"]},"SurveyStatus":{"type":"string","description":"Status of a survey or questionnaire","enum":["PAUSED","EXPIRED","FUTURE","NOW","ARCHIVED","DRAFT"]},"ShiftUpdateRequestDTO":{"type":"object","description":"Shift update data","properties":{"startTime":{"type":"string","description":"Start time of the shift","example":"09:00"},"endTime":{"type":"string","description":"End time of the shift","example":"17:00"},"weekDays":{"type":"array","description":"Days of the week when the shift applies. Values: 1=Monday, 2=Tuesday, 3=Wednesday, 4=Thursday, 5=Friday, 6=Saturday, 7=Sunday","example":[1,2,3,4,5],"items":{"type":"integer","format":"int32"}}}},"ScoreDTO":{"type":"object","properties":{"id":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"name":{"$ref":"#/components/schemas/MultiLanguage"},"iconPath":{"type":"string"},"description":{"$ref":"#/components/schemas/MultiLanguage"},"shortDescription":{"$ref":"#/components/schemas/MultiLanguage"},"status":{"$ref":"#/components/schemas/ScoreStatuses"},"factors":{"type":"array","items":{"$ref":"#/components/schemas/ScoreFactorDTO"},"uniqueItems":true},"schedule":{"type":"string","enum":["MONTHLY","BIMONTHLY","QUARTERLY","FOURMONTHLY","BIANNUAL","YEARLY"]},"lastMeasure":{"type":"string","format":"date-time"},"nextMeasure":{"type":"string","format":"date-time"},"measuringNow":{"type":"boolean"},"numberMeasurements":{"type":"integer","format":"int32"},"derived":{"type":"boolean"}}},"ScoreFactorDTO":{"type":"object","properties":{"id":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"name":{"$ref":"#/components/schemas/MultiLanguage"},"shortName":{"$ref":"#/components/schemas/MultiLanguage"},"description":{"$ref":"#/components/schemas/MultiLanguage"},"longDescription":{"$ref":"#/components/schemas/MultiLanguage"},"questions":{"type":"array","items":{"$ref":"#/components/schemas/ScoreQuestionDTO"}}}},"ScoreQuestionDTO":{"type":"object","properties":{"id":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"type":{"$ref":"#/components/schemas/QuestionType"},"title":{"$ref":"#/components/schemas/MultiLanguage"},"first":{"$ref":"#/components/schemas/QuestionValue"},"last":{"$ref":"#/components/schemas/QuestionValue"},"inverted":{"type":"boolean"},"values":{"type":"array","items":{"$ref":"#/components/schemas/QuestionValue"}}}},"ScoreStatuses":{"type":"string","description":"Status of a score in the company (ACTIVATED or DISABLED)","enum":["ACTIVATED","DISABLED"]},"QuestionActivationDTO":{"type":"object","properties":{"from":{"type":"string","format":"date-time"},"to":{"type":"string","format":"date-time"}}},"QuestionActivationRuleDTO":{"type":"object","properties":{"ruleType":{"$ref":"#/components/schemas/ActivationRuleType"},"from":{"type":"string","format":"date-time"},"to":{"type":"string","format":"date-time"},"cronExpression":{"type":"string"},"startAt":{"type":"string","format":"date-time"},"endAt":{"type":"string","format":"date-time"},"duration":{"type":"integer","format":"int32"}}},"QuestionDTO":{"type":"object","description":"The details of the question to be created","properties":{"id":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"title":{"$ref":"#/components/schemas/MultiLanguage"},"primary":{"type":"boolean"},"createdOn":{"type":"string","format":"date-time"},"activationDate":{"type":"string","format":"date-time"},"createdBy":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"updatedBy":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"questionType":{"$ref":"#/components/schemas/QuestionType"},"hierarchyIds":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true},"characteristics":{"type":"array","items":{"oneOf":[{"$ref":"#/components/schemas/EmployeeCharacteristicValueBoolean"},{"$ref":"#/components/schemas/EmployeeCharacteristicValueDate"},{"$ref":"#/components/schemas/EmployeeCharacteristicValueList"}]},"uniqueItems":true},"groupIds":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true},"values":{"type":"array","items":{"$ref":"#/components/schemas/QuestionValue"},"uniqueItems":true},"resultValues":{"type":"array","items":{"$ref":"#/components/schemas/QuestionValue"},"uniqueItems":true},"notifyByPush":{"type":"boolean"},"notifyByMail":{"type":"boolean"},"notified":{"type":"boolean"},"privated":{"type":"boolean"},"nonAnonymous":{"type":"boolean"},"requireNotEmpty":{"type":"boolean","deprecated":true},"mandatory":{"type":"boolean","deprecated":true},"voteMode":{"$ref":"#/components/schemas/QuestionVoteMode"},"feedbackEnabled":{"type":"boolean"},"minSelection":{"type":"integer","format":"int32"},"maxSelection":{"type":"integer","format":"int32"},"status":{"$ref":"#/components/schemas/QuestionStatus"},"activationRule":{"$ref":"#/components/schemas/QuestionActivationRuleDTO"},"activations":{"type":"array","items":{"$ref":"#/components/schemas/QuestionActivationDTO"},"uniqueItems":true}}},"QuestionStatus":{"type":"string","description":"Status of a question in a survey or questionnaire","enum":["ANY","ACTIVE","PENDING","EXPIRED","PAUSED","ARCHIVED"]},"PersonDTO":{"type":"object","properties":{"id":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"companyId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"name":{"type":"string"},"profileImagePath":{"type":"string"},"addedBy":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"sourceType":{"type":"string","enum":["REGISTRATION","USER","SELF","API","API_INTERNAL","SSO"]},"role":{"type":"string","enum":["ADVISOR","ADMIN","RESPONSIBLE","PUBLIC","MANAGER","EMPLOYEE"]},"managedHierarchyIds":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true},"hierarchyId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"characteristics":{"type":"array","items":{"oneOf":[{"$ref":"#/components/schemas/EmployeeCharacteristicValueBoolean"},{"$ref":"#/components/schemas/EmployeeCharacteristicValueDate"},{"$ref":"#/components/schemas/EmployeeCharacteristicValueList"}]},"uniqueItems":true},"groups":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true},"blocked":{"type":"boolean"},"debug":{"type":"boolean"},"language":{"type":"string"},"activated":{"type":"boolean"},"deleted":{"type":"boolean"},"turnoverDate":{"type":"string","format":"date-time"},"turnoverType":{"type":"string","enum":["VOLUNTARY","INVOLUNTARY","OTHER"]},"addedOn":{"type":"string","format":"date-time"},"deletedOn":{"type":"string","format":"date-time"},"email":{"type":"string"},"externalId":{"type":"string"},"mailStatus":{"type":"string","enum":["SENT","DELIVERED","OPEN","DEFERRAL","HARDBOUNCE","SOFTBOUNCE","SPAM","UNSUB","REJECTED","DELAYED","OTHER"]},"appActivationToken":{"type":"string"},"mailNotificationSettings":{"type":"array","items":{"$ref":"#/components/schemas/UserNotificationSetting"},"uniqueItems":true},"pushNotificationSettings":{"type":"array","items":{"$ref":"#/components/schemas/UserNotificationSetting"},"uniqueItems":true}}},"MilestoneDTO":{"type":"object","properties":{"id":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"title":{"type":"string"},"description":{"type":"string"},"hierarchyId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"createdBy":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"date":{"type":"string","format":"date-time"},"type":{"$ref":"#/components/schemas/MilestoneType"},"is_private":{"type":"boolean"}}},"MilestoneType":{"type":"string","description":"Types of milestone","enum":["OTHER","ANNOUNCEMENT","TOPIC"]},"CompanyHierarchyDTO":{"type":"object","properties":{"id":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"parentId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"name":{"type":"string"},"children":{"type":"array","items":{"$ref":"#/components/schemas/CompanyHierarchyDTO"}},"siloId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"expectedEmployees":{"type":"integer","format":"int32"},"activeEmployees":{"type":"integer","format":"int32"}}},"HierarchySiloDTO":{"type":"object","properties":{"id":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"companyId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"startHierarchyId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"overrideName":{"type":"string"},"siloedStats":{"type":"boolean"},"siloedComments":{"type":"boolean"},"name":{"type":"string"},"createdOn":{"type":"string","format":"date-time"}}},"AbstractFeedbackContainerDTO":{"type":"object","discriminator":{"propertyName":"type"},"properties":{"id":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"title":{"$ref":"#/components/schemas/MultiLanguage"},"imageUrl":{"type":"string"},"startDate":{"type":"string","format":"date-time"},"endDate":{"type":"string","format":"date-time"},"createdOn":{"type":"string","format":"date-time"},"createdBy":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"updateOn":{"type":"string","format":"date-time"},"updatedBy":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"hierarchyIds":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true},"characteristics":{"type":"array","items":{"oneOf":[{"$ref":"#/components/schemas/EmployeeCharacteristicValueBoolean"},{"$ref":"#/components/schemas/EmployeeCharacteristicValueDate"},{"$ref":"#/components/schemas/EmployeeCharacteristicValueList"}]},"uniqueItems":true},"groupIds":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true},"draft":{"type":"boolean"},"archived":{"type":"boolean"},"type":{"$ref":"#/components/schemas/FeedbackContainerType"},"status":{"$ref":"#/components/schemas/FeedbackContainerStatus"},"numComments":{"type":"integer","format":"int32"}}},"FeedbackContainerStatus":{"type":"string","enum":["ONGOING","EXPIRED","SCHEDULED","ARCHIVED","DRAFT"]},"FeedbackContainerType":{"type":"string","enum":["IDEA_INITIATIVE"]},"FeedbackIdeaInitiativeContainerDTO":{"allOf":[{"$ref":"#/components/schemas/AbstractFeedbackContainerDTO"},{"type":"object","properties":{"description":{"$ref":"#/components/schemas/MultiLanguage"},"owner":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"sendNotification":{"type":"boolean"},"nonAnonymous":{"type":"boolean"}}},{"type":"object","properties":{"status":{"$ref":"#/components/schemas/IdeaInitiativeContainerStatus","description":"Current status: ONGOING or NEAR_END"},"description":{"type":"string","description":"Description of the idea/initiative"},"owner":{"$ref":"#/components/schemas/SignatureDTO","description":"Signature (owner) of the container"},"nonAnonymous":{"type":"boolean","description":"Whether the container allows non-anonymous participation"}}}]},"FeedbackStatusPhase":{"type":"string","description":"FeedbackStatusPhase.","enum":["NO_PHASE","ONGOING","DISCARDED","ACCEPTED"]},"FeedbackStatusType":{"type":"object","properties":{"id":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"companyId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"createdBy":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"updatedOn":{"type":"string","format":"date-time"},"updatedBy":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"label":{"$ref":"#/components/schemas/MultiLanguage"},"description":{"$ref":"#/components/schemas/MultiLanguage"},"feedbackType":{"$ref":"#/components/schemas/FeedbackType"},"phase":{"$ref":"#/components/schemas/FeedbackStatusPhase"},"archived":{"type":"boolean"},"allowReply":{"type":"boolean"},"allowDislike":{"type":"boolean"},"allowLike":{"type":"boolean"},"notifyOnChange":{"type":"boolean"}},"required":["companyId","description","feedbackType","label","phase"]},"FeedbackType":{"type":"string","description":"Type of feedback","enum":["RECOGNITION","CONGRATULATION","SUGGESTION","INFORMATION","CRITICISM","OTHER","SCORE","ENPS","CLASSIFICATION_FOLLOWUP","QUESTION","SURVEY","ANNOUNCEMENT_COMMENT"]},"CompanyCommentInappropriateRequest":{"type":"object","properties":{"reason":{"type":"string"},"reasonType":{"$ref":"#/components/schemas/InappropriateReasonType"},"inappropriate":{"type":"boolean"},"referee":{"type":"boolean"}}},"InappropriateReasonType":{"type":"string","enum":["THRESHOLD","OFFENSIVE","DISRESPECTFUL","OTHER"]},"AnnouncementFeedbackCommentDTO":{"type":"object","allOf":[{"$ref":"#/components/schemas/StandardCommentDTO"},{"type":"object","properties":{"id":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"feedbackType":{"$ref":"#/components/schemas/FeedbackType"},"feedbackTypeImage":{"type":"string"},"privated":{"type":"boolean"},"date":{"type":"string","format":"date-time"},"comment":{"type":"string"},"hierarchyId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"hierarchyName":{"type":"string"},"hierarchyAnonymized":{"type":"boolean"},"flaggedAnonymous":{"type":"boolean"},"votes":{"type":"array","items":{"$ref":"#/components/schemas/QuestionValue"},"uniqueItems":true},"attachments":{"type":"array","items":{"$ref":"#/components/schemas/CommentAttachmentDTO"}},"allowStartConversation":{"type":"boolean"},"conversationOwnerId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"signerId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"conversationId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"hasBeenSeen":{"type":"boolean"},"allowPrivatedSwap":{"type":"boolean"},"hrRelevant":{"type":"boolean"},"hrTags":{"type":"array","items":{"type":"string"},"uniqueItems":true},"sentimentScore":{"$ref":"#/components/schemas/EmployeeSentiment"},"entities":{"type":"array","items":{"$ref":"#/components/schemas/CommentTopic"}},"concepts":{"type":"array","items":{"$ref":"#/components/schemas/CommentTopic"}},"emotions":{"type":"object","additionalProperties":{"type":"number","format":"double"}},"personalities":{"type":"object","additionalProperties":{"type":"number","format":"double"}},"personas":{"type":"object","additionalProperties":{"type":"number","format":"double"}},"announcementId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"replies":{"type":"array","description":"List of replies to this comment","items":{"$ref":"#/components/schemas/CommentReplyDTO"}},"clusters":{"type":"array","items":{"$ref":"#/components/schemas/Cluster"}},"hrPositivenessClassification":{"$ref":"#/components/schemas/HR_POSSITIVENES_CLASSIFICATION"},"replied":{"type":"boolean"},"allowReply":{"type":"boolean"},"allowNonAnonymousReply":{"type":"boolean"},"originalPrivated":{"type":"boolean"},"privateStatusChangedById":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"privateStatusChangedOn":{"type":"string","format":"date-time"},"allowTypeSwap":{"type":"boolean"},"likes":{"type":"integer","format":"int32"},"dislikes":{"type":"integer","format":"int32"},"inappropriate":{"type":"boolean"},"inappropriates":{"type":"integer","format":"int32"},"employeeInnappropiateFeedback":{"type":"array","items":{"$ref":"#/components/schemas/EmployeeInnappropiateFeedbackDTO"}},"inappropriateReasonType":{"$ref":"#/components/schemas/InappropriateReasonType"},"inappropriateSourceType":{"$ref":"#/components/schemas/InappropriateSourceType"},"commentRefereed":{"$ref":"#/components/schemas/CommentRefereed"},"inappropriateReason":{"type":"string"},"statuses":{"type":"array","items":{"$ref":"#/components/schemas/CommentStatusDTO"}},"container":{"$ref":"#/components/schemas/CommentContainerDTO"},"refereed":{"$ref":"#/components/schemas/CommentRefereedDTO"}}},{"$ref":"#/components/schemas/BaseCommentDTO"}],"description":"AnnouncementFeedbackCommentDTO","required":["feedbackType"]},"Cluster":{"type":"object","properties":{"title":{"type":"string"},"score":{"type":"number","format":"double"}}},"CommentAttachmentDTO":{"type":"object","properties":{"type":{"type":"string","enum":["IMAGE","VIDEO","EXTERNAL_GIF"]},"fileURL":{"type":"string"}}},"CommentContainerDTO":{"type":"object","properties":{"id":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"title":{"$ref":"#/components/schemas/MultiLanguage"}}},"CommentRefereed":{"type":"object","properties":{"userId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"date":{"type":"string","format":"date-time"}}},"CommentRefereedDTO":{"type":"object","properties":{"userId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"date":{"type":"string","format":"date-time"}}},"CommentReplyDTO":{"type":"object","description":"Comment reply with standard comment capabilities","properties":{"id":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"feedbackType":{"$ref":"#/components/schemas/FeedbackType"},"feedbackTypeImage":{"type":"string"},"privated":{"type":"boolean"},"date":{"type":"string","format":"date-time"},"comment":{"type":"string"},"hierarchyId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"hierarchyName":{"type":"string"},"hierarchyAnonymized":{"type":"boolean"},"flaggedAnonymous":{"type":"boolean"},"votes":{"type":"array","items":{"$ref":"#/components/schemas/QuestionValue"},"uniqueItems":true},"attachments":{"type":"array","items":{"$ref":"#/components/schemas/CommentAttachmentDTO"}},"allowStartConversation":{"type":"boolean"},"conversationOwnerId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"signerId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"conversationId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"hasBeenSeen":{"type":"boolean"},"allowPrivatedSwap":{"type":"boolean"},"hrRelevant":{"type":"boolean"},"hrTags":{"type":"array","items":{"type":"string"},"uniqueItems":true},"sentimentScore":{"$ref":"#/components/schemas/EmployeeSentiment"},"entities":{"type":"array","items":{"$ref":"#/components/schemas/CommentTopic"}},"concepts":{"type":"array","items":{"$ref":"#/components/schemas/CommentTopic"}},"emotions":{"type":"object","additionalProperties":{"type":"number","format":"double"}},"personalities":{"type":"object","additionalProperties":{"type":"number","format":"double"}},"personas":{"type":"object","additionalProperties":{"type":"number","format":"double"}},"announcementId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"clusters":{"type":"array","items":{"$ref":"#/components/schemas/Cluster"}},"hrPositivenessClassification":{"$ref":"#/components/schemas/HR_POSSITIVENES_CLASSIFICATION"},"replied":{"type":"boolean"},"allowReply":{"type":"boolean"},"allowNonAnonymousReply":{"type":"boolean"},"originalPrivated":{"type":"boolean"},"privateStatusChangedById":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"privateStatusChangedOn":{"type":"string","format":"date-time"},"allowTypeSwap":{"type":"boolean"},"likes":{"type":"integer","format":"int32"},"dislikes":{"type":"integer","format":"int32"},"inappropriate":{"type":"boolean"},"inappropriates":{"type":"integer","format":"int32"},"employeeInnappropiateFeedback":{"type":"array","items":{"$ref":"#/components/schemas/EmployeeInnappropiateFeedbackDTO"}},"inappropriateReasonType":{"$ref":"#/components/schemas/InappropriateReasonType"},"inappropriateSourceType":{"$ref":"#/components/schemas/InappropriateSourceType"},"commentRefereed":{"$ref":"#/components/schemas/CommentRefereed"},"inappropriateReason":{"type":"string"},"statuses":{"type":"array","items":{"$ref":"#/components/schemas/CommentStatusDTO"}},"container":{"$ref":"#/components/schemas/CommentContainerDTO"},"refereed":{"$ref":"#/components/schemas/CommentRefereedDTO"}}},"CommentStatusDTO":{"type":"object","properties":{"statusTypeId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"date":{"type":"string","format":"date-time"},"userId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"current":{"type":"boolean"}}},"CommentTopic":{"type":"object","properties":{"form":{"type":"string"},"relevance":{"type":"number","format":"double"},"type":{"type":"string"}}},"EmployeeInnappropiateFeedbackDTO":{"type":"object","properties":{"date":{"type":"string","format":"date-time"},"type":{"$ref":"#/components/schemas/InappropriateReasonType"},"reason":{"type":"string"}}},"EmployeeSentiment":{"type":"object","properties":{"agreement":{"type":"boolean"},"ironic":{"type":"boolean"},"subjective":{"type":"boolean"},"score":{"type":"integer","format":"int32"},"positivity":{"type":"number","format":"double"}}},"HR_POSSITIVENES_CLASSIFICATION":{"type":"string","enum":["POSITIVE","NEGATIVE","NEUTRAL"]},"InappropriateSourceType":{"type":"string","enum":["EMPLOYEES","USER"]},"StandardCommentDTO":{"allOf":[{"$ref":"#/components/schemas/BaseCommentDTO"},{"type":"object","properties":{"hrRelevant":{"type":"boolean"},"hrTags":{"type":"array","items":{"type":"string"},"uniqueItems":true},"sentimentScore":{"$ref":"#/components/schemas/EmployeeSentiment"},"entities":{"type":"array","items":{"$ref":"#/components/schemas/CommentTopic"}},"concepts":{"type":"array","items":{"$ref":"#/components/schemas/CommentTopic"}},"emotions":{"type":"object","additionalProperties":{"type":"number","format":"double"}},"personalities":{"type":"object","additionalProperties":{"type":"number","format":"double"}},"personas":{"type":"object","additionalProperties":{"type":"number","format":"double"}},"announcementId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"replies":{"type":"array","description":"List of replies to this comment","items":{"$ref":"#/components/schemas/CommentReplyDTO"}},"clusters":{"type":"array","items":{"$ref":"#/components/schemas/Cluster"}},"hrPositivenessClassification":{"$ref":"#/components/schemas/HR_POSSITIVENES_CLASSIFICATION"},"replied":{"type":"boolean"},"allowReply":{"type":"boolean"},"allowNonAnonymousReply":{"type":"boolean"},"originalPrivated":{"type":"boolean"},"privateStatusChangedById":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"privateStatusChangedOn":{"type":"string","format":"date-time"},"allowTypeSwap":{"type":"boolean"},"likes":{"type":"integer","format":"int32"},"dislikes":{"type":"integer","format":"int32"},"inappropriate":{"type":"boolean"},"inappropriates":{"type":"integer","format":"int32"},"employeeInnappropiateFeedback":{"type":"array","items":{"$ref":"#/components/schemas/EmployeeInnappropiateFeedbackDTO"}},"inappropriateReasonType":{"$ref":"#/components/schemas/InappropriateReasonType"},"inappropriateSourceType":{"$ref":"#/components/schemas/InappropriateSourceType"},"commentRefereed":{"$ref":"#/components/schemas/CommentRefereed"},"inappropriateReason":{"type":"string"},"statuses":{"type":"array","items":{"$ref":"#/components/schemas/CommentStatusDTO"}},"container":{"$ref":"#/components/schemas/CommentContainerDTO"},"refereed":{"$ref":"#/components/schemas/CommentRefereedDTO"}}}],"description":"StandardCommentDTO","required":["feedbackType"]},"EmployeeGroupDTO":{"type":"object","properties":{"id":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"name":{"type":"string"},"employeeCount":{"type":"integer","format":"int64"},"groupFlags":{"type":"array","items":{"$ref":"#/components/schemas/EmployeeGroupFlag"},"uniqueItems":true},"exitPolicies":{"type":"array","items":{"$ref":"#/components/schemas/EmployeeGroupExitPolicy"}},"allowedHierarchies":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}}},"EmployeeGroupExitAction":{"type":"object","properties":{"actionType":{"$ref":"#/components/schemas/EmployeeGroupExitActionType"},"targetGroup":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}},"EmployeeGroupExitActionType":{"type":"string","description":"Employee group exit action types","enum":["REMOVE_GROUP","DELETE_EMPLOYEE","MOVE_TO_GROUP","NONE"]},"EmployeeGroupExitPolicy":{"type":"object","properties":{"policyType":{"$ref":"#/components/schemas/EmployeeGroupExitPolicyType"},"exitAction":{"$ref":"#/components/schemas/EmployeeGroupExitAction"},"days":{"type":"integer","format":"int32"}},"required":["exitAction","policyType"]},"EmployeeGroupExitPolicyType":{"type":"string","description":"Employee group exit policy type","enum":["NONE","ALL_QUESTIONS","ELAPSED_DAYS"]},"EmployeeGroupFlag":{"type":"string","description":"Employee group flag","enum":["NO_PRIMARY_VOTE","ONLY_GROUP_QUESTIONS_VOTE"]},"CompanyCultureValueUpdateRequestDTO":{"type":"object","properties":{"name":{"$ref":"#/components/schemas/MultiLanguage"},"description":{"$ref":"#/components/schemas/MultiLanguage"},"customIconContent":{"type":"string"},"iconURL":{"type":"string"},"archived":{"type":"boolean"}}},"CompanyCultureValueDTO":{"type":"object","properties":{"id":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"coreId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"companyId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"name":{"$ref":"#/components/schemas/MultiLanguage"},"description":{"$ref":"#/components/schemas/MultiLanguage"},"iconURL":{"type":"string"},"createdOn":{"type":"string","format":"date-time"},"createdBy":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"updatedOn":{"type":"string","format":"date-time"},"updatedBy":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"archived":{"type":"boolean"}}},"BaseCommentDTO":{"type":"object","description":"Base class for all types of comments","discriminator":{"propertyName":"feedbackType","mapping":{"RECOGNITION":"#/components/schemas/RecognitionCommentDTO","SUGGESTION":"#/components/schemas/StandardCommentDTO","INFORMATION":"#/components/schemas/StandardCommentDTO","CRITICISM":"#/components/schemas/SomethingIsWrongCommentDTO","OTHER":"#/components/schemas/StandardCommentDTO","CONGRATULATION":"#/components/schemas/StandardCommentDTO","SCORE":"#/components/schemas/ScoreFeedbackCommentDTO","ENPS":"#/components/schemas/ENPSFeedbackCommentDTO","CLASSIFICATION_FOLLOWUP":"#/components/schemas/ClassificationFeedbackDTO","QUESTION":"#/components/schemas/QuestionFeedbackCommentDTO","SURVEY":"#/components/schemas/SurveyFeedbackCommentDTO","ANNOUNCEMENT_COMMENT":"#/components/schemas/AnnouncementFeedbackCommentDTO"}},"oneOf":[{"$ref":"#/components/schemas/RecognitionCommentDTO"},{"$ref":"#/components/schemas/StandardCommentDTO"},{"$ref":"#/components/schemas/SomethingIsWrongCommentDTO"},{"$ref":"#/components/schemas/ScoreFeedbackCommentDTO"},{"$ref":"#/components/schemas/ENPSFeedbackCommentDTO"},{"$ref":"#/components/schemas/ClassificationFeedbackDTO"},{"$ref":"#/components/schemas/QuestionFeedbackCommentDTO"},{"$ref":"#/components/schemas/SurveyFeedbackCommentDTO"},{"$ref":"#/components/schemas/AnnouncementFeedbackCommentDTO"}],"properties":{"id":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"feedbackType":{"$ref":"#/components/schemas/FeedbackType"},"feedbackTypeImage":{"type":"string"},"privated":{"type":"boolean"},"date":{"type":"string","format":"date-time"},"comment":{"type":"string"},"hierarchyId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"hierarchyName":{"type":"string"},"hierarchyAnonymized":{"type":"boolean"},"flaggedAnonymous":{"type":"boolean"},"votes":{"type":"array","items":{"$ref":"#/components/schemas/QuestionValue"},"uniqueItems":true},"attachments":{"type":"array","items":{"$ref":"#/components/schemas/CommentAttachmentDTO"}},"allowStartConversation":{"type":"boolean"},"conversationOwnerId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"signerId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"conversationId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"hasBeenSeen":{"type":"boolean"},"allowPrivatedSwap":{"type":"boolean"}},"required":["feedbackType"]},"ClassificationFeedbackDTO":{"type":"object","allOf":[{"$ref":"#/components/schemas/BaseCommentDTO"},{"type":"object","properties":{"type":{"$ref":"#/components/schemas/EmployeeClassificationType"}}}],"description":"ClassificationFeedbackCommentDTO","required":["feedbackType"]},"CommentTargetDTO":{"type":"object","properties":{"id":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"name":{"type":"string"},"type":{"$ref":"#/components/schemas/FeedbackTargetType"}}},"ENPSFeedbackCommentDTO":{"type":"object","allOf":[{"$ref":"#/components/schemas/BaseCommentDTO"}],"description":"ENPSFeedbackCommentDTO","required":["feedbackType"]},"EmployeeClassificationType":{"type":"string","description":"Type of employee classification based on their HI level","enum":["DISENGAGED","SLEEPING","DISENCHANTED","SAD","NEUTRAL","HAPPY","ENCHANTED"]},"FeedbackTargetType":{"type":"string","description":"Feedback target type","enum":["EMPLOYEE","MANAGER","HIERARCHY","FREE"]},"QuestionFeedbackCommentDTO":{"type":"object","allOf":[{"$ref":"#/components/schemas/StandardCommentDTO"},{"type":"object","properties":{"id":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"feedbackType":{"$ref":"#/components/schemas/FeedbackType"},"feedbackTypeImage":{"type":"string"},"privated":{"type":"boolean"},"date":{"type":"string","format":"date-time"},"comment":{"type":"string"},"hierarchyId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"hierarchyName":{"type":"string"},"hierarchyAnonymized":{"type":"boolean"},"flaggedAnonymous":{"type":"boolean"},"votes":{"type":"array","items":{"$ref":"#/components/schemas/QuestionValue"},"uniqueItems":true},"attachments":{"type":"array","items":{"$ref":"#/components/schemas/CommentAttachmentDTO"}},"allowStartConversation":{"type":"boolean"},"conversationOwnerId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"signerId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"conversationId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"hasBeenSeen":{"type":"boolean"},"allowPrivatedSwap":{"type":"boolean"},"hrRelevant":{"type":"boolean"},"hrTags":{"type":"array","items":{"type":"string"},"uniqueItems":true},"sentimentScore":{"$ref":"#/components/schemas/EmployeeSentiment"},"entities":{"type":"array","items":{"$ref":"#/components/schemas/CommentTopic"}},"concepts":{"type":"array","items":{"$ref":"#/components/schemas/CommentTopic"}},"emotions":{"type":"object","additionalProperties":{"type":"number","format":"double"}},"personalities":{"type":"object","additionalProperties":{"type":"number","format":"double"}},"personas":{"type":"object","additionalProperties":{"type":"number","format":"double"}},"announcementId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"replies":{"type":"array","description":"List of replies to this comment","items":{"$ref":"#/components/schemas/CommentReplyDTO"}},"clusters":{"type":"array","items":{"$ref":"#/components/schemas/Cluster"}},"hrPositivenessClassification":{"$ref":"#/components/schemas/HR_POSSITIVENES_CLASSIFICATION"},"replied":{"type":"boolean"},"allowReply":{"type":"boolean"},"allowNonAnonymousReply":{"type":"boolean"},"originalPrivated":{"type":"boolean"},"privateStatusChangedById":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"privateStatusChangedOn":{"type":"string","format":"date-time"},"allowTypeSwap":{"type":"boolean"},"likes":{"type":"integer","format":"int32"},"dislikes":{"type":"integer","format":"int32"},"inappropriate":{"type":"boolean"},"inappropriates":{"type":"integer","format":"int32"},"employeeInnappropiateFeedback":{"type":"array","items":{"$ref":"#/components/schemas/EmployeeInnappropiateFeedbackDTO"}},"inappropriateReasonType":{"$ref":"#/components/schemas/InappropriateReasonType"},"inappropriateSourceType":{"$ref":"#/components/schemas/InappropriateSourceType"},"commentRefereed":{"$ref":"#/components/schemas/CommentRefereed"},"inappropriateReason":{"type":"string"},"statuses":{"type":"array","items":{"$ref":"#/components/schemas/CommentStatusDTO"}},"container":{"$ref":"#/components/schemas/CommentContainerDTO"},"refereed":{"$ref":"#/components/schemas/CommentRefereedDTO"},"questionId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"questionTitle":{"$ref":"#/components/schemas/MultiLanguage"}}},{"$ref":"#/components/schemas/BaseCommentDTO"}],"description":"QuestionFeedbackCommentDTO","required":["feedbackType"]},"RecognitionCommentDTO":{"type":"object","allOf":[{"$ref":"#/components/schemas/StandardCommentDTO"},{"type":"object","properties":{"value":{"$ref":"#/components/schemas/RecognitionValueDTO"},"target":{"$ref":"#/components/schemas/CommentTargetDTO"}}},{"$ref":"#/components/schemas/BaseCommentDTO"}],"description":"RecognitionCommentDTO","required":["feedbackType"]},"RecognitionValueDTO":{"type":"object","properties":{"id":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"name":{"$ref":"#/components/schemas/MultiLanguage"},"iconImagePath":{"type":"string"}}},"ScoreFeedbackCommentDTO":{"type":"object","allOf":[{"$ref":"#/components/schemas/BaseCommentDTO"},{"type":"object","properties":{"scoreId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"factorId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"questionId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"questionTitle":{"$ref":"#/components/schemas/MultiLanguage"},"scoreName":{"$ref":"#/components/schemas/MultiLanguage"},"factorName":{"$ref":"#/components/schemas/MultiLanguage"},"invertedQuestion":{"type":"boolean"}}}],"description":"ScoreFeedbackCommentDTO","required":["feedbackType"]},"SomethingIsWrongCommentDTO":{"type":"object","allOf":[{"$ref":"#/components/schemas/StandardCommentDTO"},{"type":"object","properties":{"id":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"feedbackType":{"$ref":"#/components/schemas/FeedbackType"},"feedbackTypeImage":{"type":"string"},"privated":{"type":"boolean"},"date":{"type":"string","format":"date-time"},"comment":{"type":"string"},"hierarchyId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"hierarchyName":{"type":"string"},"hierarchyAnonymized":{"type":"boolean"},"flaggedAnonymous":{"type":"boolean"},"votes":{"type":"array","items":{"$ref":"#/components/schemas/QuestionValue"},"uniqueItems":true},"attachments":{"type":"array","items":{"$ref":"#/components/schemas/CommentAttachmentDTO"}},"allowStartConversation":{"type":"boolean"},"conversationOwnerId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"signerId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"conversationId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"hasBeenSeen":{"type":"boolean"},"allowPrivatedSwap":{"type":"boolean"},"hrRelevant":{"type":"boolean"},"hrTags":{"type":"array","items":{"type":"string"},"uniqueItems":true},"sentimentScore":{"$ref":"#/components/schemas/EmployeeSentiment"},"entities":{"type":"array","items":{"$ref":"#/components/schemas/CommentTopic"}},"concepts":{"type":"array","items":{"$ref":"#/components/schemas/CommentTopic"}},"emotions":{"type":"object","additionalProperties":{"type":"number","format":"double"}},"personalities":{"type":"object","additionalProperties":{"type":"number","format":"double"}},"personas":{"type":"object","additionalProperties":{"type":"number","format":"double"}},"announcementId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"replies":{"type":"array","description":"List of replies to this comment","items":{"$ref":"#/components/schemas/CommentReplyDTO"}},"clusters":{"type":"array","items":{"$ref":"#/components/schemas/Cluster"}},"hrPositivenessClassification":{"$ref":"#/components/schemas/HR_POSSITIVENES_CLASSIFICATION"},"replied":{"type":"boolean"},"allowReply":{"type":"boolean"},"allowNonAnonymousReply":{"type":"boolean"},"originalPrivated":{"type":"boolean"},"privateStatusChangedById":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"privateStatusChangedOn":{"type":"string","format":"date-time"},"allowTypeSwap":{"type":"boolean"},"likes":{"type":"integer","format":"int32"},"dislikes":{"type":"integer","format":"int32"},"inappropriate":{"type":"boolean"},"inappropriates":{"type":"integer","format":"int32"},"employeeInnappropiateFeedback":{"type":"array","items":{"$ref":"#/components/schemas/EmployeeInnappropiateFeedbackDTO"}},"inappropriateReasonType":{"$ref":"#/components/schemas/InappropriateReasonType"},"inappropriateSourceType":{"$ref":"#/components/schemas/InappropriateSourceType"},"commentRefereed":{"$ref":"#/components/schemas/CommentRefereed"},"inappropriateReason":{"type":"string"},"statuses":{"type":"array","items":{"$ref":"#/components/schemas/CommentStatusDTO"}},"container":{"$ref":"#/components/schemas/CommentContainerDTO"},"refereed":{"$ref":"#/components/schemas/CommentRefereedDTO"},"makesMeFeel":{"type":"string"},"howToSolve":{"type":"string"}}},{"$ref":"#/components/schemas/BaseCommentDTO"}],"description":"SomethingIsWrongCommentDTO","required":["feedbackType"]},"SurveyFeedbackCommentDTO":{"type":"object","allOf":[{"$ref":"#/components/schemas/BaseCommentDTO"},{"type":"object","properties":{"questionId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"questionType":{"$ref":"#/components/schemas/QuestionType"},"surveyId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"roundId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"questionTitle":{"$ref":"#/components/schemas/MultiLanguage"}}}],"description":"SurveyFeedbackCommentDTO","required":["feedbackType"]},"CompanySegmentDateRangeDTO":{"type":"object","properties":{"id":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"from":{"type":"integer","format":"int32"},"fromType":{"$ref":"#/components/schemas/DateGroupingTypes"},"to":{"type":"integer","format":"int32"},"toType":{"$ref":"#/components/schemas/DateGroupingTypes"},"name":{"type":"string"},"employeeCount":{"type":"integer","format":"int32"}}},"CompanySegmentListItemDTO":{"type":"object","properties":{"id":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"value":{"$ref":"#/components/schemas/MultiLanguage"},"position":{"type":"integer","format":"int32"},"employeeCount":{"type":"integer","format":"int32"}}},"DateGroupingTypes":{"type":"string","description":"Types of date grouping intervals","enum":["DAY","WEEK","MONTH","QUARTER","NON_NATURAL_QUARTER","YEAR"]},"SegmentBaseDTO":{"type":"object","description":"Base class for employee characteristic values","discriminator":{"propertyName":"questionType","mapping":{"LIST":"#/components/schemas/SegmentListDTO","DATE":"#/components/schemas/SegmentDateDTO"}},"properties":{"id":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"description":{"type":"string"},"question":{"$ref":"#/components/schemas/MultiLanguage"},"privated":{"type":"boolean"},"isCore":{"type":"boolean"},"employeeCount":{"type":"integer","format":"int32"},"core":{"type":"boolean"},"questionType":{"$ref":"#/components/schemas/CharacteristicType"}},"required":["description","questionType"]},"SegmentDateDTO":{"type":"object","allOf":[{"$ref":"#/components/schemas/SegmentBaseDTO"},{"type":"object","properties":{"ranges":{"type":"array","items":{"$ref":"#/components/schemas/CompanySegmentDateRangeDTO"},"uniqueItems":true},"deletedRanges":{"type":"array","items":{"$ref":"#/components/schemas/CompanySegmentDateRangeDTO"},"uniqueItems":true}}}],"description":"Date-based company segment implementation","required":["questionType"]},"SegmentListDTO":{"type":"object","allOf":[{"$ref":"#/components/schemas/SegmentBaseDTO"},{"type":"object","properties":{"values":{"type":"array","items":{"$ref":"#/components/schemas/CompanySegmentListItemDTO"}},"deletedValues":{"type":"array","items":{"$ref":"#/components/schemas/CompanySegmentListItemDTO"}}}}],"description":"List-based company segment implementation","required":["questionType"]},"AbstractAnnouncementCreateUpdateRequestDTO":{"type":"object","discriminator":{"propertyName":"sectionId"},"properties":{"sectionId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}},"LifeEventAnnouncementCreateUpdateRequestDTO":{"allOf":[{"$ref":"#/components/schemas/AbstractAnnouncementCreateUpdateRequestDTO"},{"type":"object","properties":{"title":{"$ref":"#/components/schemas/MultiLanguage"},"message":{"$ref":"#/components/schemas/MultiLanguage"},"resume":{"$ref":"#/components/schemas/MultiLanguage"}}}]},"AnnouncementExternalDTO":{"type":"object","properties":{"id":{"type":"string"},"sectionId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"effectiveDate":{"type":"string","format":"date-time"},"expirationDate":{"type":"string","format":"date-time"},"notify":{"type":"boolean"},"hierarchyIds":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true},"groupIds":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true},"characteristics":{"type":"array","items":{"oneOf":[{"$ref":"#/components/schemas/EmployeeCharacteristicValueBoolean"},{"$ref":"#/components/schemas/EmployeeCharacteristicValueDate"},{"$ref":"#/components/schemas/EmployeeCharacteristicValueList"}]},"uniqueItems":true},"repliesToComments":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true},"categoryIds":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true},"title":{"$ref":"#/components/schemas/MultiLanguage"},"message":{"$ref":"#/components/schemas/MultiLanguage"},"resume":{"$ref":"#/components/schemas/MultiLanguage"},"pinned":{"type":"boolean"},"hfBranded":{"type":"boolean"},"attachments":{"type":"array","items":{"$ref":"#/components/schemas/CompanyFile"},"uniqueItems":true},"media":{"type":"array","items":{"$ref":"#/components/schemas/CompanyFile"},"uniqueItems":true},"author":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"updatedBy":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"updatedOn":{"type":"string","format":"date-time"},"signed":{"type":"boolean"},"reactionsEnabled":{"type":"boolean"},"commentsEnabled":{"type":"boolean"},"archiveOnExpiration":{"type":"boolean"},"coverImageURL":{"type":"string"},"iconImageURL":{"type":"string"},"draft":{"type":"boolean"},"visibleOnLogin":{"type":"boolean"},"notified":{"type":"boolean"},"effective":{"type":"boolean"},"expired":{"type":"boolean"},"editable":{"type":"boolean"},"cloneable":{"type":"boolean"},"contentReady":{"type":"boolean"},"reachedAudience":{"type":"integer","format":"int32"},"expectedAudience":{"type":"integer","format":"int64"},"archived":{"type":"boolean"},"numComments":{"type":"integer","format":"int32"},"likedCount":{"type":"integer","format":"int32"}}},"CompanyFile":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"fileType":{"type":"string"},"filePath":{"type":"string"},"fileSize":{"type":"number","format":"double"}}},"AnnouncementCommentReplySectionConfig":{"allOf":[{"$ref":"#/components/schemas/AnnouncementSectionConfigBase"}],"required":["title"]},"AnnouncementDefaultSectionConfig":{"allOf":[{"$ref":"#/components/schemas/AnnouncementSectionConfigBase"}],"required":["title"]},"AnnouncementLifeEventsSectionConfig":{"allOf":[{"$ref":"#/components/schemas/AnnouncementSectionConfigBase"},{"type":"object","properties":{"eventTypeConfigurations":{"type":"array","items":{"$ref":"#/components/schemas/EventTypeTemplateConfiguration"}}}}],"required":["title"]},"AnnouncementSectionConfigBase":{"type":"object","description":"List of section configuration elements","discriminator":{"propertyName":"id"},"properties":{"title":{"$ref":"#/components/schemas/MultiLanguage"},"removable":{"type":"boolean"},"id":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"layout":{"type":"string","enum":["HORIZONTAL","VERTICAL","HTML"]},"searchEnabled":{"type":"boolean"},"publishingCapable":{"type":"boolean"},"archivableCapable":{"type":"boolean"},"deletionCapable":{"type":"boolean"},"onlyInApp":{"type":"boolean"},"generated":{"type":"boolean"},"listingType":{"type":"string","enum":["STANDARD","DATE_GROUPS","DIRECT"]},"representation":{"type":"string","enum":["COVER","STANDARD"]}},"required":["title"]},"AnnouncementUnreadSectionConfig":{"allOf":[{"$ref":"#/components/schemas/AnnouncementSectionConfigBase"},{"type":"object","properties":{"elapsedDaysLessThan":{"type":"integer","format":"int32"}}}],"required":["title"]},"AnnouncementsConfigurationDTO":{"type":"object","description":"Wrapper DTO for sending and receiving the list of announcement section configurations","properties":{"sections":{"description":"List of section configuration elements","oneOf":[{"$ref":"#/components/schemas/AnnouncementCommentReplySectionConfig"},{"$ref":"#/components/schemas/AnnouncementDefaultSectionConfig"},{"$ref":"#/components/schemas/AnnouncementLifeEventsSectionConfig"},{"$ref":"#/components/schemas/AnnouncementUnreadSectionConfig"}]}},"required":["sections"]},"EventTypeTemplateConfiguration":{"type":"object","properties":{"eventType":{"type":"string","enum":["BIRTH_ANNIVERSARY","BIRTHDAY","WORK_ANNIVERSARY","START_DATE"]},"title":{"$ref":"#/components/schemas/MultiLanguage"},"message":{"$ref":"#/components/schemas/MultiLanguage"},"enabled":{"type":"boolean"},"allowComments":{"type":"boolean"},"allowLikes":{"type":"boolean"}}},"AnnouncementCategoryDTO":{"type":"object","properties":{"id":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"name":{"type":"string"},"color":{"type":"string"},"count":{"type":"integer","format":"int32"}}},"SurveyBlock":{"type":"object","properties":{"id":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"order":{"type":"integer","format":"int32"},"title":{"$ref":"#/components/schemas/MultiLanguage"},"description":{"$ref":"#/components/schemas/MultiLanguage"},"questions":{"type":"array","items":{"oneOf":[{"$ref":"#/components/schemas/OpenSurveyQuestion"},{"$ref":"#/components/schemas/OptionsSurveyQuestion"},{"$ref":"#/components/schemas/ScaleSurveyQuestion"}]},"minItems":1}},"required":["questions","title"]},"SurveyTemplateDTO":{"type":"object","properties":{"id":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"categoryId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"active":{"type":"boolean"},"restrictedToCompanies":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true},"restrictedToIndustries":{"type":"array","items":{"type":"string","enum":["ACCOMMODATION_AND_FOOT_SERVICES","ARTS_ENTERTAINMENT_RECREATION","COMPUTER_SOFTWARE_IT_SERVICES","CONSTRUCTION","EDUCATIONAL_SERVICES","FINANCIAL_SERVICES_INSURANCE","HEALTH_CARE_SOCIAL_ASSISTANCE","MANAGEMENT_CONSULTING","MANUFACTURING","MARKETING_ADVERTISING","NATURAL_RESOURCES","NON_PROFIT_ORGANIZATION","PROFESSIONAL_SCIENTIFIC_AND_TECHNICAL_SERVICES","PUBLIC_AND_GOVERMENT_ADMINISTRATION","REAL_ESTATE_RENTAL_AND_LEASING","TRANSPORTATION_AND_WAREHOUSING","UTILITIES_AND_SERVICES","WHOLESALE_AND_RETAIL_TRADE","OTHER"]},"uniqueItems":true},"title":{"$ref":"#/components/schemas/MultiLanguage"},"description":{"$ref":"#/components/schemas/MultiLanguage"},"catalogTitle":{"$ref":"#/components/schemas/MultiLanguage"},"catalogDescription":{"$ref":"#/components/schemas/MultiLanguage"},"imagePath":{"type":"string"},"blocks":{"type":"array","items":{"$ref":"#/components/schemas/SurveyBlock"}},"usedIn":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}}},"SurveyTemplateCategoryDTO":{"type":"object","properties":{"id":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"name":{"$ref":"#/components/schemas/MultiLanguage"},"description":{"$ref":"#/components/schemas/MultiLanguage"},"color":{"type":"string"},"iconPath":{"type":"string"}}},"EmployeeVote":{"type":"object","properties":{"questionId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"selectedValue":{"type":"integer","format":"int32"},"selectedValues":{"type":"array","items":{"type":"integer","format":"int32"},"uniqueItems":true},"message":{"type":"string"},"date":{"type":"string","format":"date-time"},"feedbackType":{"$ref":"#/components/schemas/FeedbackType"},"additionalFields":{"type":"object","additionalProperties":{}},"privated":{"type":"boolean"},"notAnonymous":{"type":"boolean"}}},"ExtraContentType":{"type":"string","description":"Type of extra content (quote, birthday, work anniversary, etc.)","enum":["HAS_QUOTE","HAS_BIRTHDAY","HAS_WORK_ANNIVERSARY","cookie","NONE","VOTE_STORE"]},"VoteResult":{"type":"object","description":"Result of a vote: extra content to show after voting (e.g. quote, celebration).","properties":{"afterVote":{"$ref":"#/components/schemas/ExtraContentType","description":"Type of extra content to display after the vote"}}},"FeedbackVerificationResultDTO":{"type":"object","description":"Result of feedback verification/moderation: result type, moderation action, and optional message/suggestion.","properties":{"result":{"$ref":"#/components/schemas/VerificationResultType","description":"Verification result"},"moderationType":{"$ref":"#/components/schemas/ModerationType","description":"Moderation type applied"},"message":{"type":"string","description":"Optional message (e.g. reason for block)"},"suggestion":{"type":"string","description":"Optional suggestion for the user (e.g. when moderation type is SUGGESTION)"}}},"ModerationType":{"type":"string","description":"Moderation action: SUGGESTION (suggest change) or BLOCK","enum":["SUGGESTION","BLOCK"]},"VerificationResultType":{"type":"string","description":"Verification outcome: VALID, INPROPER_IMAGE, INPROPER_TEXT, OTHER","enum":["VALID","INPROPER_IMAGE","INPROPER_TEXT","OTHER"]},"EmployeeMailUnsubscribeRequest":{"type":"object","properties":{"token":{"type":"string"},"comment":{"type":"string"}}},"TimesheetDateTimeRequestDTO":{"type":"object","description":"Request body for timesheet start/end/break operations with a single date-time in ISO-8601 format","properties":{"dateTime":{"type":"string","description":"Date and time in ISO-8601 format (e.g. 2024-01-15T09:00:00Z)","example":"2024-01-15T09:00:00Z"},"timeZone":{"type":"string","description":"IANA timezone ID for this operation (e.g. Europe/Madrid). Stored on the timesheet document; dateTime is still interpreted as a UTC instant.","example":"Europe/Madrid","minLength":1}},"required":["dateTime","timeZone"]},"TermsAcceptanceRequest":{"type":"object","properties":{"termsIds":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}}},"AbstractEmployeeRegistrationRequest":{"type":"object","properties":{"devicePlatform":{"$ref":"#/components/schemas/DevicePlatform"}}},"DevicePlatform":{"type":"string","description":"Platform or channel where the client runs (iOS, Android, Web, Slack, etc.)","enum":["IOS","IPADOS","ANDROID","WEB","WINDOWS","SLACK","MSTEAMS","MAIL","TELEGRAM","UNKNOWN"]},"EmployeeCompanyConfigurationDTO":{"type":"object","properties":{"alertDays":{"type":"array","items":{"type":"integer","format":"int32"}},"alertHour":{"type":"integer","format":"int32"},"alertMinute":{"type":"integer","format":"int32"},"enabledEmployeeFeatures":{"type":"integer","format":"int32"}}},"EmployeeRegistrationResponse":{"type":"object","properties":{"sessionToken":{"type":"string"},"companyConfig":{"$ref":"#/components/schemas/EmployeeCompanyConfigurationDTO"}}},"EmployeeNotificationDTO":{"type":"object","description":"Employee notification: id, title, image, date, seen, target type, and target id.","properties":{"id":{"type":"string","description":"Notification identifier","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"title":{"type":"string","description":"Notification title"},"imagePath":{"type":"string","description":"URL or path to the notification image"},"date":{"type":"string","format":"date-time","description":"Date and time of the notification"},"seen":{"type":"boolean","description":"Whether the notification has been seen"},"targetType":{"$ref":"#/components/schemas/NotificationTargetType","description":"Type of target this notification refers to"},"targetId":{"type":"string","description":"ID of the target (comment, conversation, announcement, etc.)","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}},"NotificationTargetType":{"type":"string","description":"Type of target: COMMENT, CONVERSATION, ANNOUNCEMENT, QUESTION, SUGGESTION, PERSONAL_REPORT, NONE","enum":["COMMENT","CONVERSATION","ANNOUNCEMENT","QUESTION","SUGGESTION","PERSONAL_REPORT","NONE"]},"EmployeeNotificationCountDTO":{"type":"object","description":"Total count of notifications for the employee.","properties":{"count":{"type":"integer","format":"int32","description":"Number of notifications"}}},"ReportReaction":{"type":"string","description":"Reaction to a personal report (like or dislike)","enum":["like","dislike"]},"MePersonalReportDTO":{"allOf":[{"$ref":"#/components/schemas/MePersonalReportHeaderDTO"},{"type":"object","properties":{"id":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"title":{"type":"string"},"date":{"type":"string","format":"date-time"},"liked":{"type":"boolean"},"disliked":{"type":"boolean"},"seen":{"type":"boolean"},"report":{"type":"string"}}}],"description":"Full personal report: header fields plus report content (HTML or text)."},"MePersonalReportHeaderDTO":{"type":"object","description":"Personal report header: id, title, date, liked, disliked, seen. Generated from engagement pulse, HI, etc. for a given month.","properties":{"id":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"title":{"type":"string"},"date":{"type":"string","format":"date-time"},"liked":{"type":"boolean"},"disliked":{"type":"boolean"},"seen":{"type":"boolean"}}},"EmployeeLoginRequest":{"type":"object","properties":{"timeZone":{"type":"string"},"language":{"type":"string"},"country":{"type":"string"},"appVersion":{"type":"string"}}},"EmployeeLoginResponse":{"type":"object","properties":{"id":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"companyId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"companyName":{"type":"string"},"companyTimeZone":{"type":"string"},"appStyle":{"type":"string"},"hierarchyId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"hierarchyName":{"type":"string"},"configCompleted":{"type":"boolean"},"requireVote":{"type":"boolean"},"pendingAnnouncements":{"type":"boolean"},"pendingFeedback":{"type":"boolean"},"requireFirstTimeCommentFilter":{"type":"boolean"},"name":{"type":"string"},"profileImagePath":{"type":"string"},"role":{"type":"string","enum":["ADVISOR","ADMIN","RESPONSIBLE","PUBLIC","MANAGER","EMPLOYEE"]},"debug":{"type":"boolean"},"canResetProfile":{"type":"boolean"},"canManage":{"type":"boolean"},"canBlockUsers":{"type":"boolean"},"hasHFMe":{"type":"boolean","deprecated":true},"canHFMe":{"type":"boolean"},"canRegisterTime":{"type":"boolean"},"hfMeActivated":{"type":"boolean"},"canUseHero":{"type":"boolean"},"canManageHierarchy":{"type":"boolean"},"externalId":{"type":"string"},"votingFlow":{"type":"string","enum":["QUESTIONS","ANNOUNCEMENTS"]}}},"EmployeeAutoInviteRequest":{"type":"object","properties":{"autoInviteToken":{"type":"string"}}},"AbstractFeedbackDTO":{"type":"object","description":"Base class for feedback post messages","discriminator":{"propertyName":"type","mapping":{"CONGRATULATION":"#/components/schemas/StandardFeedbackDTO","SUGGESTION":"#/components/schemas/SuggestionFeedbackDTO","INFORMATION":"#/components/schemas/StandardFeedbackDTO","RECOGNITION":"#/components/schemas/RecognitionFeedbackDTO","CRITICISM":"#/components/schemas/SomethingIsWrongFeedbackDTO"}},"properties":{"type":{"$ref":"#/components/schemas/FeedbackType","description":"Type of the feedback","enum":["CONGRATULATION, SUGGESTION, INFORMATION, RECOGNITION, CRITICISM"]},"date":{"type":"string","format":"date-time","description":"Date of the Feedback. If not posted, Server will add the reception one"},"privated":{"type":"boolean","description":"Should this feedback be hidden an only visible for managers?. Check Feedback Types endpoint to see the different modes"},"notAnonymous":{"type":"boolean","description":"Should this feedback be signed?"},"message":{"type":"string","description":"Core message of the feedback"},"verificationToken":{"type":"string","description":"If the feedback type requires verification, a result token must be attached before publishing"},"attachments":{"type":"array","description":"Attachements of the feedback, like images, etc","items":{"$ref":"#/components/schemas/FeedbackAttachementDTO"}},"additionalFields":{"type":"object","additionalProperties":{}}},"required":["message","notAnonymous","privated","type"]},"FeedbackAttachementDTO":{"type":"object","description":"Attachment for feedback (image, etc.): type, mime type, base64 or file URL.","properties":{"type":{"type":"string","description":"Attachment type (e.g. IMAGE)","enum":["IMAGE","VIDEO","EXTERNAL_GIF"]},"mimeType":{"type":"string","description":"MIME type of the file"},"base64":{"type":"string","description":"Base64-encoded content (when uploading)"},"fileURL":{"type":"string","description":"URL of the file (when already stored)"}}},"FeedbackTargetDTO":{"type":"object","description":"To who is targeted this feedback?","properties":{"name":{"type":"string","description":"To who is targeted the recognition. Just for FREE_TARGET, LIST_FREE_TARGET"},"description":{"type":"string","description":"Description of the target: Area, Manager name, or Employee Name. Just for FREE_TARGET, LIST_FREE_TARGET"},"id":{"type":"string","description":"The ID to who is targeted the recognition. Just for FREE_TARGET, LIST_FREE_TARGET feedback types","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"type":{"$ref":"#/components/schemas/FeedbackTargetType","description":"Which target type is this? is directed to someone or to a team"}}},"RecognitionFeedbackDTO":{"allOf":[{"$ref":"#/components/schemas/AbstractFeedbackDTO"},{"type":"object","properties":{"valueId":{"type":"string","description":"Id of the value for the recognition","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"target":{"$ref":"#/components/schemas/FeedbackTargetDTO","description":"To who is targeted the recognition"}}}],"description":"Recognition request POST message","required":["message","notAnonymous","privated","target","type","valueId"]},"SomethingIsWrongFeedbackDTO":{"allOf":[{"$ref":"#/components/schemas/AbstractFeedbackDTO"},{"type":"object","properties":{"makesMeFeel":{"type":"string","description":"Feedback Wrap makes me field value. Expected to not be empty"},"howToSolve":{"type":"string","description":"Feedback Wrap How To Solve. Expected to not be empty"}}}],"description":"Something is Wrong Feedback Post message","required":["howToSolve","makesMeFeel","message","notAnonymous","privated","type"]},"StandardFeedbackDTO":{"allOf":[{"$ref":"#/components/schemas/AbstractFeedbackDTO"}],"description":"Standard message used for Congratulation, Information and any other Type","required":["message","notAnonymous","privated","type"]},"SuggestionFeedbackDTO":{"allOf":[{"$ref":"#/components/schemas/AbstractFeedbackDTO"},{"type":"object","properties":{"containerId":{"type":"string","description":"Initiative id where to post this suggestion","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}}],"description":"Suggestion Feedback Post message","required":["containerId","message","notAnonymous","privated","type"]},"EmployeeParticipationProfileConfigureRequest":{"type":"object","properties":{"hierarchyId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"characteristics":{"type":"array","items":{"oneOf":[{"$ref":"#/components/schemas/EmployeeCharacteristicValueBoolean"},{"$ref":"#/components/schemas/EmployeeCharacteristicValueDate"},{"$ref":"#/components/schemas/EmployeeCharacteristicValueList"}]},"uniqueItems":true}}},"PersonalConfigurationDTO":{"type":"object","description":"Personal configuration for the current user: e.g. whether Me section is activated.","properties":{"meActivated":{"type":"boolean","description":"Whether the Me / personal area is activated"}}},"EmployeeCommentRequestDTO":{"type":"object","description":"Request body to post a new employee comment (question or container context).","properties":{"questionId":{"type":"string","description":"Question ID when commenting in a question context","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"containerId":{"type":"string","description":"Feedback container ID when commenting in a container context","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"message":{"type":"string","description":"Comment text"},"date":{"type":"string","format":"date-time","description":"Optional date (server uses reception time if omitted)"},"feedbackType":{"$ref":"#/components/schemas/FeedbackType","description":"Feedback type (e.g. SUGGESTION, RECOGNITION)"},"additionalFields":{"type":"object","additionalProperties":{},"description":"Additional fields keyed by CommentAdditionalFields"},"privated":{"type":"boolean","description":"Whether the comment is private (visible only to managers)"},"notAnonymous":{"type":"boolean","description":"Whether the comment is signed (not anonymous)"}},"required":["feedbackType","message"]},"ContentAttachment":{"type":"object","properties":{"type":{"type":"string","enum":["IMAGE","VIDEO","EXTERNAL_GIF"]},"mimeType":{"type":"string"},"base64":{"type":"string"},"fileURL":{"type":"string"}}},"EmployeeCommentReplyRequestDTO":{"type":"object","description":"Request body to post a reply to an employee comment.","properties":{"message":{"type":"string","description":"Reply text"},"messageType":{"type":"integer","format":"int32","description":"Optional message type identifier"},"date":{"type":"string","format":"date-time","description":"Optional date (server uses reception time if omitted)"},"notAnonymous":{"type":"boolean","description":"Whether the reply is signed (not anonymous)"},"attachments":{"type":"array","description":"Optional attachments (e.g. images)","items":{"$ref":"#/components/schemas/ContentAttachment"}}},"required":["message"]},"AbstractCommentContextDTO":{"type":"object","description":"Base class for comment context (survey, score, question, announcement, etc.). Discriminated by type.","discriminator":{"propertyName":"type","mapping":{"SURVEY":"#/components/schemas/SurveyContextDTO","SCORE":"#/components/schemas/ScoreContextDTO","ENPS":"#/components/schemas/ENPSContextDTO","QUESTION":"#/components/schemas/QuestionContextDTO","ANNOUNCEMENT":"#/components/schemas/AnnouncementCommentContextDTO"}},"properties":{"type":{"type":"string"}},"required":["type"]},"AnnouncementCommentContextDTO":{"allOf":[{"$ref":"#/components/schemas/AbstractCommentContextDTO"},{"type":"object","properties":{"announcementId":{"type":"string","description":"ID of the announcement this comment belongs to"}}}],"description":"Comment context when the comment is on an announcement."},"CommentFeedbackTypeDTO":{"type":"object","deprecated":true,"description":"Deprecated. Feedback type with image URL. Use feedback-type-specific configuration instead.","properties":{"feedbackType":{"$ref":"#/components/schemas/FeedbackType","description":"Feedback type (e.g. RECOGNITION, SUGGESTION)"},"imageURL":{"type":"string","description":"URL of the image/icon for this feedback type"}}},"ENPSContextDTO":{"allOf":[{"$ref":"#/components/schemas/AbstractCommentContextDTO"},{"type":"object","properties":{"questionTitle":{"type":"string","description":"Title of the ENPS question"},"questionValue":{"$ref":"#/components/schemas/QuestionValueDTO","description":"Selected or displayed question value"}}}],"description":"Comment context when the comment is in an ENPS (eNPS) question context."},"EmployeeCommentAttachmentDTO":{"type":"object","description":"Attachment linked to a comment (e.g. image) with type and file URL.","properties":{"type":{"type":"string","description":"Attachment type (e.g. IMAGE)","enum":["IMAGE","VIDEO","EXTERNAL_GIF"]},"fileURL":{"type":"string","description":"URL of the attached file"}}},"EmployeeCommentDTO":{"allOf":[{"$ref":"#/components/schemas/BaseCommentDTO"},{"type":"object","properties":{"id":{"type":"string","description":"Unique identifier of the comment","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"date":{"type":"string","format":"date-time","description":"Date and time when the comment was created"},"comment":{"type":"string","description":"Comment text content"},"hierarchy":{"$ref":"#/components/schemas/EmployeeHierarchyDTO","description":"Hierarchy information of the comment author (may be anonymized)"},"likes":{"type":"integer","format":"int32","description":"Number of likes received"},"liked":{"type":"boolean","description":"Whether the current user has liked this comment"},"dislikes":{"type":"integer","format":"int32","description":"Number of dislikes received"},"disliked":{"type":"boolean","description":"Whether the current user has disliked this comment"},"inappropriates":{"type":"integer","format":"int32","description":"Number of inappropriate flags"},"inappropriated":{"type":"boolean","description":"Whether the current user has flagged this as inappropriate"},"flaggedInapropriate":{"type":"boolean","description":"Whether this comment has been flagged as inappropriate"},"flaggedAnonymous":{"type":"boolean","description":"Whether the comment was posted anonymously"},"rating":{"type":"integer","format":"int32","description":"Optional rating value when the comment is tied to a question/score"},"questionValue":{"$ref":"#/components/schemas/QuestionValueDTO","description":"Question value when the comment is in a question or score context"},"signature":{"$ref":"#/components/schemas/SignatureDTO","description":"Signature information (anonymous or signed)"},"containerPreview":{"$ref":"#/components/schemas/FeedbackContainerPreviewDTO","description":"Preview of the feedback container this comment belongs to"},"html":{"type":"boolean","description":"Whether the comment content is HTML"},"sourceComment":{"type":"string","description":"Original comment text when edited or from another source"},"allowLike":{"type":"boolean","description":"Whether the current user can like this comment"},"allowDislike":{"type":"boolean","description":"Whether the current user can dislike this comment"},"allowFlagInappropriate":{"type":"boolean","description":"Whether the current user can flag this comment as inappropriate"},"feedbackType":{"$ref":"#/components/schemas/CommentFeedbackTypeDTO","deprecated":true,"description":"Deprecated. Feedback type classification for this comment."},"additionalFields":{"type":"object","additionalProperties":{},"description":"Additional fields keyed by CommentAdditionalFields enum"},"attachments":{"type":"array","description":"Attachments (e.g. images) linked to this comment","items":{"$ref":"#/components/schemas/EmployeeCommentAttachmentDTO"}},"hasBeenSeen":{"type":"boolean","description":"Whether this comment has been seen by the current user"},"questionId":{"type":"string","description":"Question ID when the comment is in a question context","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"announcementNumber":{"type":"string","deprecated":true,"description":"Deprecated. Announcement number reference."},"conversationId":{"type":"string","description":"Conversation ID if this comment started or belongs to a conversation","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"replied":{"type":"boolean","description":"Whether this comment has been replied to"},"allowReply":{"type":"boolean","description":"Whether replies are allowed for this comment"},"requiresReplyVerification":{"type":"boolean","description":"Whether a reply must pass verification/moderation before being published"},"replySignatureMode":{"$ref":"#/components/schemas/SignatureMode","description":"Signature mode required for replies (e.g. ANONYMOUS, MANDATORY)"},"allowNotAnonymousReply":{"type":"boolean","deprecated":true,"description":"Deprecated. Replaced by replySignatureMode and other flags."},"allowStartConversation":{"type":"boolean","description":"Whether the user can start a conversation from this comment"},"allowedReplyAttachmentTypes":{"type":"array","description":"Attachment types allowed when replying (e.g. IMAGE)","items":{"type":"string","enum":["IMAGE","VIDEO","EXTERNAL_GIF"]},"uniqueItems":true},"replies":{"type":"array","description":"List of replies to this comment","items":{"$ref":"#/components/schemas/EmployeeCommentReplyDTO"}},"target":{"$ref":"#/components/schemas/FeedbackTargetDTO","description":"Target (e.g. hierarchy or group) this comment is associated with"},"status":{"$ref":"#/components/schemas/FeedbackCycleStatusDTO","description":"Status of the feedback cycle this comment belongs to"},"context":{"description":"Context of the comment (e.g. SURVEY, QUESTION, ANNOUNCEMENT) with type-specific data","oneOf":[{"$ref":"#/components/schemas/AnnouncementCommentContextDTO"},{"$ref":"#/components/schemas/ENPSContextDTO"},{"$ref":"#/components/schemas/QuestionContextDTO"},{"$ref":"#/components/schemas/ScoreContextDTO"},{"$ref":"#/components/schemas/SurveyContextDTO"}]}}}],"description":"Top-level employee comment. Extends base comment with question/conversation ids, reply settings, target, status, and context."},"EmployeeCommentReplyDTO":{"allOf":[{"$ref":"#/components/schemas/BaseCommentDTO"},{"type":"object","properties":{"id":{"type":"string","description":"Unique identifier of the comment","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"date":{"type":"string","format":"date-time","description":"Date and time when the comment was created"},"comment":{"type":"string","description":"Comment text content"},"hierarchy":{"$ref":"#/components/schemas/EmployeeHierarchyDTO","description":"Hierarchy information of the comment author (may be anonymized)"},"likes":{"type":"integer","format":"int32","description":"Number of likes received"},"liked":{"type":"boolean","description":"Whether the current user has liked this comment"},"dislikes":{"type":"integer","format":"int32","description":"Number of dislikes received"},"disliked":{"type":"boolean","description":"Whether the current user has disliked this comment"},"inappropriates":{"type":"integer","format":"int32","description":"Number of inappropriate flags"},"inappropriated":{"type":"boolean","description":"Whether the current user has flagged this as inappropriate"},"flaggedInapropriate":{"type":"boolean","description":"Whether this comment has been flagged as inappropriate"},"flaggedAnonymous":{"type":"boolean","description":"Whether the comment was posted anonymously"},"rating":{"type":"integer","format":"int32","description":"Optional rating value when the comment is tied to a question/score"},"questionValue":{"$ref":"#/components/schemas/QuestionValueDTO","description":"Question value when the comment is in a question or score context"},"signature":{"$ref":"#/components/schemas/SignatureDTO","description":"Signature information (anonymous or signed)"},"containerPreview":{"$ref":"#/components/schemas/FeedbackContainerPreviewDTO","description":"Preview of the feedback container this comment belongs to"},"html":{"type":"boolean","description":"Whether the comment content is HTML"},"sourceComment":{"type":"string","description":"Original comment text when edited or from another source"},"allowLike":{"type":"boolean","description":"Whether the current user can like this comment"},"allowDislike":{"type":"boolean","description":"Whether the current user can dislike this comment"},"allowFlagInappropriate":{"type":"boolean","description":"Whether the current user can flag this comment as inappropriate"},"feedbackType":{"$ref":"#/components/schemas/CommentFeedbackTypeDTO","deprecated":true,"description":"Deprecated. Feedback type classification for this comment."},"additionalFields":{"type":"object","additionalProperties":{},"description":"Additional fields keyed by CommentAdditionalFields enum"},"attachments":{"type":"array","description":"Attachments (e.g. images) linked to this comment","items":{"$ref":"#/components/schemas/EmployeeCommentAttachmentDTO"}},"hasBeenSeen":{"type":"boolean","description":"Whether this comment has been seen by the current user"},"highlightScore":{"type":"integer","format":"int32","description":"Score used to highlight or order this reply"}}}],"description":"Reply to an employee comment. Extends base comment with highlight score for ordering/display."},"EmployeeHierarchyDTO":{"type":"object","description":"Employee hierarchy node: id, parent id, name, and children (recursive structure).","properties":{"id":{"type":"string","description":"Hierarchy node identifier","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"parentId":{"type":"string","description":"Parent node identifier","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"name":{"type":"string","description":"Display name of the hierarchy node"},"children":{"type":"array","description":"Child nodes","items":{"description":"Employee hierarchy node: id, parent id, name, and children (recursive structure)."},"uniqueItems":true}}},"FeedbackContainerPreviewDTO":{"type":"object","description":"Lightweight preview of a feedback container (id, type, title, image).","properties":{"id":{"type":"string","description":"Unique identifier of the container","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"type":{"$ref":"#/components/schemas/FeedbackContainerType","description":"Container type (e.g. IDEA_INITIATIVE)"},"title":{"type":"string","description":"Title of the container"},"imageUrl":{"type":"string","description":"URL of the container image"}}},"FeedbackCycleStatusDTO":{"type":"object","description":"Status of a feedback cycle: color, label, and description (e.g. approved, in review).","properties":{"color":{"type":"string","description":"Color code for the status (e.g. for UI)"},"label":{"type":"string","description":"Short label for the status"},"description":{"type":"string","description":"Description of the status"}}},"QuestionContextDTO":{"allOf":[{"$ref":"#/components/schemas/AbstractCommentContextDTO"},{"type":"object","properties":{"questionTitle":{"type":"string","description":"Title of the question"},"questionValues":{"type":"array","description":"Question value options or selected values","items":{"$ref":"#/components/schemas/QuestionValueDTO"},"uniqueItems":true}}}],"description":"Comment context when the comment is on a question (e.g. HI, check-in)."},"QuestionValueDTO":{"type":"object","description":"Option or value for a question (e.g. scale value, choice): id, score, value, image, color.","properties":{"id":{"type":"integer","format":"int32","description":"Value identifier"},"score":{"type":"integer","format":"int32","description":"Numeric score when applicable (e.g. for scales)"},"value":{"type":"string","description":"Display value (label)"},"imageUrl":{"type":"string","description":"URL of the image for this value"},"color":{"type":"string","description":"Color code for this value (e.g. for UI)"}}},"ScoreContextDTO":{"allOf":[{"$ref":"#/components/schemas/AbstractCommentContextDTO"},{"type":"object","properties":{"scoreName":{"type":"string","description":"Name of the score"},"factorName":{"type":"string","description":"Name of the factor"},"questionTitle":{"type":"string","description":"Title of the question"},"questionValue":{"$ref":"#/components/schemas/QuestionValueDTO","description":"Question value for the score"}}}],"description":"Comment context when the comment is in a score (factor/question) context."},"SignatureMode":{"type":"string","enum":["ANONYMOUS","OPTIONAL","MANDATORY","PUBLIC_MANDATORY"]},"SurveyContextDTO":{"allOf":[{"$ref":"#/components/schemas/AbstractCommentContextDTO"},{"type":"object","properties":{"roundTitle":{"type":"string","description":"Title of the survey round"},"questionTitle":{"type":"string","description":"Title of the survey question"},"questionValues":{"type":"array","description":"Question value options or selected values","items":{"$ref":"#/components/schemas/QuestionValueDTO"},"uniqueItems":true}}}],"description":"Comment context when the comment is in a survey (round title, question title, question values)."},"EmployeeCommentInappropiateRequest":{"type":"object","properties":{"reason":{"type":"string"},"reasonType":{"$ref":"#/components/schemas/InappropriateReasonType"}}},"EmployeeCheckUserRequest":{"type":"object","properties":{"id":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"email":{"type":"string"},"key":{"type":"string"}}},"EmployeeCheckUserResponse":{"type":"object","properties":{"valid":{"type":"boolean"},"accountLocked":{"type":"boolean"},"companyBlocked":{"type":"boolean"},"userType":{"$ref":"#/components/schemas/UserType"}}},"AnnouncementForEmployeeDTO":{"allOf":[{"$ref":"#/components/schemas/AnnouncementHeaderForEmployeeDTO"},{"type":"object","properties":{"id":{"type":"string"},"title":{"type":"string"},"effectiveDate":{"type":"string","format":"date-time"},"announcementNumber":{"type":"string","deprecated":true},"coverImageURL":{"type":"string"},"iconImageURL":{"type":"string"},"unSeen":{"type":"boolean"},"repliesToComments":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true},"pinned":{"type":"boolean","deprecated":true},"hfBranded":{"type":"boolean"},"hfBrandedAvatarPath":{"type":"string"},"hfBrandedAuthorName":{"type":"string"},"hfBrandedAuthorRole":{"type":"string"},"resume":{"type":"string"},"attachments":{"type":"array","items":{"$ref":"#/components/schemas/CompanyFileDTO"},"uniqueItems":true},"categories":{"type":"array","items":{"$ref":"#/components/schemas/AnnouncementCategoryDTO"}},"signature":{"$ref":"#/components/schemas/SignatureDTO"},"reactionsEnabled":{"type":"boolean"},"liked":{"type":"boolean"},"likesCount":{"type":"integer","format":"int32"},"numComments":{"type":"integer","format":"int32"},"allowComments":{"type":"boolean"},"allowedCommentAttachmentTypes":{"type":"array","items":{"type":"string","enum":["IMAGE","VIDEO","EXTERNAL_GIF"]},"uniqueItems":true},"requiresCommentVerification":{"type":"boolean"},"commented":{"type":"boolean"},"canComment":{"type":"boolean"},"commentSignatureMode":{"$ref":"#/components/schemas/SignatureMode"},"message":{"type":"string","description":"Full announcement message body (HTML or plain text)"}}}],"description":"Full announcement for employee view: header fields plus message body."},"AnnouncementHeaderForEmployeeDTO":{"type":"object","description":"Announcement header for employee: id, title, dates, images, categories, comments/reactions settings, signature.","properties":{"id":{"type":"string"},"title":{"type":"string"},"effectiveDate":{"type":"string","format":"date-time"},"announcementNumber":{"type":"string","deprecated":true},"coverImageURL":{"type":"string"},"iconImageURL":{"type":"string"},"unSeen":{"type":"boolean"},"repliesToComments":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true},"pinned":{"type":"boolean","deprecated":true},"hfBranded":{"type":"boolean"},"hfBrandedAvatarPath":{"type":"string"},"hfBrandedAuthorName":{"type":"string"},"hfBrandedAuthorRole":{"type":"string"},"resume":{"type":"string"},"attachments":{"type":"array","items":{"$ref":"#/components/schemas/CompanyFileDTO"},"uniqueItems":true},"categories":{"type":"array","items":{"$ref":"#/components/schemas/AnnouncementCategoryDTO"}},"signature":{"$ref":"#/components/schemas/SignatureDTO"},"reactionsEnabled":{"type":"boolean"},"liked":{"type":"boolean"},"likesCount":{"type":"integer","format":"int32"},"numComments":{"type":"integer","format":"int32"},"allowComments":{"type":"boolean"},"allowedCommentAttachmentTypes":{"type":"array","items":{"type":"string","enum":["IMAGE","VIDEO","EXTERNAL_GIF"]},"uniqueItems":true},"requiresCommentVerification":{"type":"boolean"},"commented":{"type":"boolean"},"canComment":{"type":"boolean"},"commentSignatureMode":{"$ref":"#/components/schemas/SignatureMode"}}},"CompanyFileDTO":{"type":"object","description":"Company file reference: name, file type, and path/URL.","properties":{"name":{"type":"string","description":"File name"},"fileType":{"type":"string","description":"MIME or file type"},"filePath":{"type":"string","description":"Path or URL to the file"}}},"AnnouncementCommentRequestDTO":{"type":"object","description":"Request body to post a comment on an announcement.","properties":{"message":{"type":"string","description":"Comment text"},"signed":{"type":"boolean","description":"Whether the comment is signed (not anonymous)"},"attachments":{"type":"array","description":"Optional attachments (e.g. images)","items":{"$ref":"#/components/schemas/ContentAttachment"}}},"required":["message"]},"CompanyAccountStatus":{"type":"string","description":"Status of a company account (active, blocked, paused)","enum":["ACTIVE","BLOCKED","PAUSED"]},"CompanyDTO":{"type":"object","properties":{"id":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"name":{"type":"string"},"mainEmail":{"type":"string"},"mainAddress":{"type":"string"},"mainPhone":{"type":"string"},"imageUrl":{"type":"string"},"createdOn":{"type":"string","format":"date-time"},"status":{"$ref":"#/components/schemas/CompanyAccountStatus"},"launchStatus":{"type":"string","enum":["CREATED","PRELAUNCH","LAUNCHED","CRUISE_SPEED"]}}},"BreakTimeDTO":{"type":"object","description":"DTO representing a break period during a work shift","properties":{"startTime":{"type":"string","format":"date-time","description":"Start date and time of the break in UTC","example":"2024-01-15T13:00:00.000Z"},"endTime":{"type":"string","format":"date-time","description":"End date and time of the break in UTC","example":"2024-01-15T14:00:00.000Z"}},"required":["endTime","startTime"]},"TimesheetCreateRequestDTO":{"type":"object","description":"Timesheet creation data","properties":{"startTime":{"type":"string","format":"date-time","description":"Start date and time of the work period in UTC","example":"2024-01-15T09:00:00.000Z"},"endTime":{"type":"string","format":"date-time","description":"End date and time of the work period in UTC","example":"2024-01-15T17:00:00.000Z"},"breaks":{"type":"array","description":"List of break periods during the work shift","items":{"$ref":"#/components/schemas/BreakTimeDTO"}},"periodType":{"$ref":"#/components/schemas/PeriodTimeSheetType","description":"Type of period: ACTIVE, VACATION, BANK_HOLIDAY, SICK_LEAVE, INDISPOSITION_ABSENCE, or DAY_OFF","example":"ACTIVE"},"timeZone":{"type":"string","description":"IANA timezone ID for the client sending this request (e.g. Europe/Madrid). Stored on the timesheet document.","example":"Europe/Madrid","minLength":1}},"required":["periodType","startTime","timeZone"]},"TimesheetEmployeeBatchCreateRequestDTO":{"type":"object","description":"Request DTO for creating multiple timesheet records for a specific employee","properties":{"employeeId":{"type":"string","description":"Employee ID","example":"65a1b2c3d4e5f67890123456"},"createRequests":{"type":"array","description":"List of timesheet creation data for this employee (e.g. one entry per day)","items":{"$ref":"#/components/schemas/TimesheetCreateRequestDTO"}}}},"SurveyRemindRequestDTO":{"type":"object","description":"The details of the reminder to be created","properties":{"message":{"$ref":"#/components/schemas/MultiLanguage"},"header":{"$ref":"#/components/schemas/MultiLanguage"},"appReminder":{"type":"boolean"},"mailReminder":{"type":"boolean"}},"required":["header","message"]},"SAML2SSOConfigRequest":{"type":"object","properties":{"emailDomains":{"type":"array","items":{"type":"string"},"uniqueItems":true},"idpMetadataUrl":{"type":"string"},"idpMetadataXml":{"type":"string"},"spEntityId":{"type":"string"},"nameIdFormat":{"type":"string"},"mandatory":{"type":"boolean"}}},"SSOConfigResponse":{"type":"object","properties":{"protocol":{"type":"string","enum":["SAML2","OIDC"]},"enabled":{"type":"boolean"},"mandatory":{"type":"boolean"},"emailDomains":{"type":"array","items":{"type":"string"},"uniqueItems":true},"registrationId":{"type":"string"},"ssoInitiationUrl":{"type":"string"},"spMetadataUrl":{"type":"string"}}},"OIDCSSOConfigRequest":{"type":"object","properties":{"emailDomains":{"type":"array","items":{"type":"string"},"uniqueItems":true},"issuerUri":{"type":"string"},"clientId":{"type":"string"},"clientSecret":{"type":"string"},"scopes":{"type":"array","items":{"type":"string"}},"authorizationUri":{"type":"string"},"tokenUri":{"type":"string"},"jwkSetUri":{"type":"string"},"userInfoUri":{"type":"string"},"userNameAttribute":{"type":"string"},"mandatory":{"type":"boolean"}}},"ShiftCreateRequestDTO":{"type":"object","description":"Shift creation data","properties":{"startTime":{"type":"string","description":"Start time of the shift","example":"09:00"},"endTime":{"type":"string","description":"End time of the shift","example":"17:00"},"weekDays":{"type":"array","description":"Days of the week when the shift applies. Values: 1=Monday, 2=Tuesday, 3=Wednesday, 4=Thursday, 5=Friday, 6=Saturday, 7=Sunday","example":[1,2,3,4,5],"items":{"type":"integer","format":"int32"}}},"required":["endTime","startTime","weekDays"]},"ShiftDTO":{"type":"object","properties":{"id":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"companyId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"employeeId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"startTime":{"type":"string"},"endTime":{"type":"string"},"weekDays":{"type":"array","items":{"type":"integer","format":"int32"}}}},"AccountRequest":{"type":"object","properties":{"email":{"type":"string"},"expiredToken":{"type":"string"}}},"GroupingType":{"type":"string","description":"Types of date grouping by segmentation","enum":["HIERARCHIES","GROUPS","CHARACTERISTICS","MANAGERS"]},"UserRegistrationRequestDTO":{"type":"object","properties":{"name":{"type":"string"},"companyName":{"type":"string"},"email":{"type":"string"},"language":{"type":"string"}}},"UserRegistrationResponseDTO":{"type":"object","properties":{"accountCreated":{"type":"boolean"}}},"SendInvitationPreviewDTO":{"type":"object","properties":{"content":{"type":"string"}}},"EmployeeSendReminderRequest":{"type":"object","properties":{"subject":{"type":"string"},"content":{"type":"string"},"signWithUserName":{"type":"boolean"},"sendSample":{"type":"boolean"}}},"AbstractHRISConfigurationDTO":{"type":"object","discriminator":{"propertyName":"type"},"properties":{"type":{"type":"string","enum":["MERGE","BAMBOOHR","WOLTERSKLUWER","PERSONIO","UNKNOWN"]},"status":{"type":"string","enum":["PENDING_EXTERNAL_APROVAL","INITIAL_SYNC","PENDING_CONFIGURATION","CONNECTED","FAILED"]},"lastSyncDate":{"type":"string","format":"date-time"}}},"BambooHRISConfigurationDTO":{"allOf":[{"$ref":"#/components/schemas/AbstractHRISConfigurationDTO"},{"type":"object","properties":{"subdomain":{"type":"string"},"userName":{"type":"string"}}}]},"MergeHRISConfigurationDTO":{"allOf":[{"$ref":"#/components/schemas/AbstractHRISConfigurationDTO"},{"type":"object","properties":{"subdomain":{"type":"string"},"userName":{"type":"string"}}}]},"PersonioHRISConfigurationDTO":{"allOf":[{"$ref":"#/components/schemas/AbstractHRISConfigurationDTO"},{"type":"object","properties":{"clientId":{"type":"string"},"secret":{"type":"string"}}}]},"WoltersKluwerHRISConfigurationDTO":{"allOf":[{"$ref":"#/components/schemas/AbstractHRISConfigurationDTO"},{"type":"object","properties":{"clientId":{"type":"string"},"secret":{"type":"string"},"redirectUrl":{"type":"string"}}}]},"AttachmentResponse":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"fileType":{"type":"string"},"filePath":{"type":"string"},"fileSize":{"type":"number","format":"double"}}},"CommentsReportType":{"type":"string","description":"CommentsReportType","enum":["LIST","FIRST_REPLY_TIMES","RECOGNITIONS"]},"FeedbackConfiguration":{"type":"object","properties":{"companyId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"feedbackConfiguration":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/FeedbackTypeConfiguration"}},"recognitionValues":{"type":"array","deprecated":true,"items":{"$ref":"#/components/schemas/FeedbackRecognitionValue"}},"recognitionMode":{"type":"string","enum":["MANAGER","MANAGER_EMPLOYEES"]},"recognitionEnabled":{"type":"boolean","deprecated":true},"recognitionSignatureMode":{"$ref":"#/components/schemas/SignatureMode","deprecated":true},"recognitionManagerSignatureMode":{"$ref":"#/components/schemas/SignatureMode","deprecated":true},"recognitionEmployeeSignatureMode":{"$ref":"#/components/schemas/SignatureMode","deprecated":true},"recognitionTargetMode":{"$ref":"#/components/schemas/FeedbackTargetMode","deprecated":true},"maxCommentLength":{"type":"integer","format":"int32"},"maxRecognitionsPerDay":{"type":"integer","format":"int32","deprecated":true},"feedbackMode":{"$ref":"#/components/schemas/FeedbackMode"},"feedbackLevelMode":{"$ref":"#/components/schemas/FeedbackLevelMode"},"allowNonAnonymousReplies":{"type":"boolean","deprecated":true},"allowManagerNonAnonymousReplies":{"type":"boolean"},"allowEmployeeNonAnonymousReplies":{"type":"boolean"},"commentsReplyMode":{"type":"string","enum":["NO_REPLY","COMMENT_OR_REPLY","COMMENT_AND_REPLY","COMMENT_AND_MULTIPLE_REPLY","COMMENT_AND_ONLY_MANAGERS_REPLY"]},"reactToSignedCommentsEnabled":{"type":"boolean"},"closedReason":{"type":"string"},"verificationRequired":{"type":"boolean"},"allowAttachments":{"type":"boolean"}}},"FeedbackLevelMode":{"type":"string","enum":["ANONYMOUS_OPEN","ANONYMOUS_ON_REPLY","ALL_CLOSED","NO_FEEDBACK"]},"FeedbackMode":{"type":"string","enum":["ON_VOTE","AFTER_VOTE","ON_AND_AFTER_VOTE","NO_FEEDBACK","INLINE"]},"FeedbackPrivacyMode":{"type":"string","enum":["OPEN","OPTIONAL","MANDATORY"]},"FeedbackRecognitionValue":{"type":"object","properties":{"id":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"name":{"type":"string"},"description":{"type":"string"},"iconId":{"type":"integer","format":"int32"},"createdOn":{"type":"string","format":"date-time"},"createdBy":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"archived":{"type":"boolean"}}},"FeedbackTargetMode":{"type":"string","description":"FeedbackTargetMode.","enum":["NO_TARGET","FREE_TARGET","LIST_TARGET","LIST_FREE_TARGET"]},"FeedbackTypeConfiguration":{"type":"object","properties":{"enabled":{"type":"boolean"},"privacyMode":{"$ref":"#/components/schemas/FeedbackPrivacyMode"},"signatureMode":{"$ref":"#/components/schemas/SignatureMode","deprecated":true},"managerSignatureMode":{"$ref":"#/components/schemas/SignatureMode"},"employeeSignatureMode":{"$ref":"#/components/schemas/SignatureMode"},"targetMode":{"$ref":"#/components/schemas/FeedbackTargetMode"},"requireReview":{"type":"boolean"},"sharedAmmountComments":{"type":"boolean"},"maxCommentsPerDay":{"type":"integer","format":"int32"}}},"ENPSConfigureRequest":{"type":"object","properties":{"enabled":{"type":"boolean"},"reason":{"$ref":"#/components/schemas/MultiLanguage"},"reasonTitle":{"$ref":"#/components/schemas/MultiLanguage"},"reasonDescription":{"$ref":"#/components/schemas/MultiLanguage"},"fullPeriod":{"type":"boolean"}}},"CompanyCultureValueCreateRequestDTO":{"type":"object","properties":{"name":{"$ref":"#/components/schemas/MultiLanguage"},"description":{"$ref":"#/components/schemas/MultiLanguage"},"customIconContent":{"type":"string"},"iconURL":{"type":"string"}}},"CompanyCultureValuesTranslationRequestDTO":{"type":"object","properties":{"toLanguage":{"type":"string"}}},"ConversationStartersRequestDTO":{"type":"object","properties":{"personKey":{"type":"string"},"commentId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"statusDate":{"type":"string","format":"date"},"originType":{"type":"string","enum":["COMMENT","ENGAGEMENT_STATUS"]}}},"ConversationStarterDTO":{"type":"object","properties":{"starter":{"type":"string"},"reason":{"type":"string"}}},"ConversationInitRequestDTO":{"type":"object","properties":{"personKey":{"type":"string"},"commentId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"originType":{"type":"string","enum":["COMMENT","ENGAGEMENT_STATUS"]},"statusDate":{"type":"string","format":"date-time"},"message":{"type":"string"}}},"ContentGenerationRequestDTO":{"type":"object","properties":{"instruction":{"type":"string"},"selectedContent":{"type":"string"},"baseContent":{"type":"string"},"outputFormat":{"type":"string"}}},"CompanyConfig":{"type":"object","properties":{"alertDays":{"type":"array","items":{"type":"integer","format":"int32"}},"alertHour":{"type":"integer","format":"int32"},"alertMinute":{"type":"integer","format":"int32"},"voteReminderDays":{"type":"array","items":{"type":"integer","format":"int32"}},"voteReminderTimeConfig":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/EngagementActionTimeConfig"}},"inappropiateThreshold":{"type":"integer","format":"int32"},"hiCalculationMode":{"type":"string","enum":["CLASSIC","POSITIVENESS","AVERAGES"]},"elapsedDaysSinceLastVote":{"type":"integer","format":"int32"},"minActiveEmployees":{"type":"integer","format":"int32"},"apiKey":{"type":"string"},"validDomains":{"type":"array","items":{"type":"string"},"uniqueItems":true},"domainPatternExclusions":{"type":"array","items":{"type":"string"},"uniqueItems":true},"renameManagerComentsHierarchy":{"type":"boolean"},"defaultLanguage":{"type":"string"},"supportedLanguages":{"type":"array","items":{"type":"string"},"uniqueItems":true},"sentimentalAnalyticsEnabled":{"type":"boolean"},"personalityAnalyticsEnabled":{"type":"boolean"},"timezone":{"type":"string"},"status":{"$ref":"#/components/schemas/CompanyAccountStatus"},"launchStatus":{"type":"string","enum":["CREATED","PRELAUNCH","LAUNCHED","CRUISE_SPEED"]},"source":{"type":"string","enum":["SELF_SERVICE","SALE","PARTNER_SALE"]},"plan":{"type":"string","enum":["TEST","TRIAL","SUBSCRIPTION"]},"blockReason":{"type":"string"},"blockedDate":{"type":"string","format":"date-time"},"blockerId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"startDate":{"type":"string","format":"date-time"},"resetProfileMode":{"type":"string","enum":["NEVER","EACH_30_DAYS","ALWAYS"]},"expireActivationCodes":{"type":"boolean"},"disabledEgagementNonActivatedMails":{"type":"boolean"},"disabledEmailManagersRanking":{"type":"boolean"},"monthlyReportOnlyForAdmins":{"type":"boolean","deprecated":true},"rolesForMonthlyReport":{"type":"array","items":{"type":"string","enum":["ADVISOR","ADMIN","RESPONSIBLE","PUBLIC","MANAGER","EMPLOYEE"]},"uniqueItems":true},"disableEngagementMails":{"type":"boolean"},"assetsOverrides":{"$ref":"#/components/schemas/CompanyConfigAssets"},"includeInBenchmark":{"type":"boolean"},"industryType":{"type":"string","enum":["ACCOMMODATION_AND_FOOT_SERVICES","ARTS_ENTERTAINMENT_RECREATION","COMPUTER_SOFTWARE_IT_SERVICES","CONSTRUCTION","EDUCATIONAL_SERVICES","FINANCIAL_SERVICES_INSURANCE","HEALTH_CARE_SOCIAL_ASSISTANCE","MANAGEMENT_CONSULTING","MANUFACTURING","MARKETING_ADVERTISING","NATURAL_RESOURCES","NON_PROFIT_ORGANIZATION","PROFESSIONAL_SCIENTIFIC_AND_TECHNICAL_SERVICES","PUBLIC_AND_GOVERMENT_ADMINISTRATION","REAL_ESTATE_RENTAL_AND_LEASING","TRANSPORTATION_AND_WAREHOUSING","UTILITIES_AND_SERVICES","WHOLESALE_AND_RETAIL_TRADE","OTHER"]},"jobEnvironment":{"type":"string","enum":["OFFICE","NON_DESKTOP","GEEK"]},"requireVoteToSeeResults":{"type":"boolean"},"overrideDepartmentWithCompanyName":{"type":"boolean"},"mailVoteFrequency":{"type":"string","enum":["DISABLED","EACH_WEEK","EACH_TWO_WEEKS"]},"overrideVoteImageWithFeedbackType":{"type":"boolean"},"appStyle":{"type":"string"},"enableClassificationFollowups":{"type":"boolean"},"enableAutoInvite":{"type":"boolean"},"autoInviteToken":{"type":"string"},"statsTransparencyMode":{"type":"string","enum":["MANAGERS","ALL"]},"announcementNotificationDays":{"type":"array","items":{"type":"integer","format":"int32"}},"announcementNotificationStartHour":{"type":"integer","format":"int32"},"announcementNotificationEndHour":{"type":"integer","format":"int32"},"questionNotificationDays":{"type":"array","items":{"type":"integer","format":"int32"}},"questionNotificationStartHour":{"type":"integer","format":"int32"},"questionNotificationEndHour":{"type":"integer","format":"int32"},"fakeEmployeeStats":{"type":"boolean"},"allowBlockUsers":{"type":"boolean"},"moodNotesOnHiEnabled":{"type":"boolean"},"timeRegistrationEnabled":{"type":"boolean"},"heroRequiredRole":{"type":"string","enum":["ADVISOR","ADMIN","RESPONSIBLE","PUBLIC","MANAGER","EMPLOYEE"]},"loginByAccessLinkOnly":{"type":"boolean","deprecated":true},"allowedLoginMethods":{"type":"array","items":{"type":"string","enum":["USER_PASSWORD","USER_ACCESS_LINK","GOOGLE_AUTH","MICROSOFT_AUTH","HP_AUTH","SSO_SAML2","SSO_OIDC"]},"uniqueItems":true},"ssoConfiguration":{"$ref":"#/components/schemas/CompanySSOConfiguration"},"votingFlow":{"type":"string","enum":["QUESTIONS","ANNOUNCEMENTS"]},"context":{"type":"string","deprecated":true},"lifeEventsReminderEnabled":{"type":"boolean"},"employeeHierarchyConfiguredByAdmins":{"type":"boolean"},"rataModeEnabled":{"type":"boolean"},"silentManagers":{"type":"boolean"},"silentManagersAllowedEmails":{"type":"array","items":{"type":"string"},"uniqueItems":true},"hfmeEnabled":{"type":"boolean"},"hfheroEnabled":{"type":"boolean"},"active":{"type":"boolean"},"blocked":{"type":"boolean"},"paused":{"type":"boolean"}}},"CompanyConfigAssets":{"type":"object","properties":{"productName":{"type":"string"},"productMailLogo":{"type":"string"},"productIosStoreURL":{"type":"string"},"productIpadosStoreURL":{"type":"string"},"productAndroidStoreURL":{"type":"string"},"productSlackInstallURL":{"type":"string"},"productMSTeamsInstallURL":{"type":"string"},"productWebClientURL":{"type":"string"},"productAppsURL":{"type":"string"},"unsubEmailURL":{"type":"string"},"notificationsApplicationId":{"type":"string"}},"required":["productAndroidStoreURL","productAppsURL","productIosStoreURL","productIpadosStoreURL","productMSTeamsInstallURL","productMailLogo","productName","productSlackInstallURL","productWebClientURL","unsubEmailURL"]},"CompanySSOConfiguration":{"type":"object","properties":{"protocol":{"type":"string","enum":["SAML2","OIDC"]},"registrationId":{"type":"string"},"emailDomains":{"type":"array","items":{"type":"string"},"uniqueItems":true},"enabled":{"type":"boolean"},"mandatory":{"type":"boolean"},"idpMetadataUrl":{"type":"string"},"idpMetadataXml":{"type":"string"},"spEntityId":{"type":"string"},"nameIdFormat":{"type":"string"},"issuerUri":{"type":"string"},"clientId":{"type":"string"},"clientSecret":{"type":"string"},"scopes":{"type":"array","items":{"type":"string"}},"authorizationUri":{"type":"string"},"tokenUri":{"type":"string"},"jwkSetUri":{"type":"string"},"userInfoUri":{"type":"string"},"userNameAttribute":{"type":"string"}}},"EngagementActionTimeConfig":{"type":"object","properties":{"hour":{"type":"integer","format":"int32"},"minute":{"type":"integer","format":"int32"}}},"SilentManagersConfigurationRequest":{"type":"object","properties":{"silentManagers":{"type":"boolean"},"allowedManagersEmails":{"type":"array","items":{"type":"string"},"uniqueItems":true}}},"CompanySetupRequestDTO":{"type":"object","properties":{"industryType":{"type":"string","enum":["ACCOMMODATION_AND_FOOT_SERVICES","ARTS_ENTERTAINMENT_RECREATION","COMPUTER_SOFTWARE_IT_SERVICES","CONSTRUCTION","EDUCATIONAL_SERVICES","FINANCIAL_SERVICES_INSURANCE","HEALTH_CARE_SOCIAL_ASSISTANCE","MANAGEMENT_CONSULTING","MANUFACTURING","MARKETING_ADVERTISING","NATURAL_RESOURCES","NON_PROFIT_ORGANIZATION","PROFESSIONAL_SCIENTIFIC_AND_TECHNICAL_SERVICES","PUBLIC_AND_GOVERMENT_ADMINISTRATION","REAL_ESTATE_RENTAL_AND_LEASING","TRANSPORTATION_AND_WAREHOUSING","UTILITIES_AND_SERVICES","WHOLESALE_AND_RETAIL_TRADE","OTHER"]},"feedbackLevelMode":{"$ref":"#/components/schemas/FeedbackLevelMode"},"companyName":{"type":"string"},"defaultLanguage":{"type":"string"},"timezone":{"type":"string"},"domains":{"type":"array","items":{"type":"string"},"uniqueItems":true}}},"CompanyCustomizationDTO":{"type":"object","properties":{"employeeInvitation":{"$ref":"#/components/schemas/MultiLanguage"}}},"CompanyCommentReplyRequest":{"type":"object","properties":{"message":{"type":"string"},"messageType":{"type":"integer","format":"int32"},"signed":{"type":"boolean"}}},"CompanySegmentBase":{"type":"object","discriminator":{"propertyName":"questionType"},"properties":{"segmentKey":{"$ref":"#/components/schemas/CompanySegmentKey"},"description":{"type":"string"},"question":{"$ref":"#/components/schemas/MultiLanguage"},"createdOn":{"type":"string","format":"date-time"},"updatedOn":{"type":"string","format":"date-time"},"coreId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"privated":{"type":"boolean"},"originalId":{"type":"string","deprecated":true,"example":"64f8a0e2d5b7c9a1e3f4a5b6"},"allActiveOptionIds":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true},"questionType":{"$ref":"#/components/schemas/CharacteristicType"}}},"CompanySegmentDate":{"allOf":[{"$ref":"#/components/schemas/CompanySegmentBase"},{"type":"object","properties":{"ranges":{"type":"array","items":{"$ref":"#/components/schemas/CompanySegmentDateRange"},"uniqueItems":true},"deletedRanges":{"type":"array","items":{"$ref":"#/components/schemas/CompanySegmentDateRange"},"uniqueItems":true}}}]},"CompanySegmentDateRange":{"type":"object","properties":{"id":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"from":{"type":"integer","format":"int32"},"fromType":{"$ref":"#/components/schemas/DateGroupingTypes"},"to":{"type":"integer","format":"int32"},"toType":{"$ref":"#/components/schemas/DateGroupingTypes"},"name":{"type":"string"}}},"CompanySegmentKey":{"type":"object","properties":{"id":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"companyId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}},"CompanySegmentList":{"allOf":[{"$ref":"#/components/schemas/CompanySegmentBase"},{"type":"object","properties":{"values":{"type":"array","items":{"$ref":"#/components/schemas/CompanySegmentListItem"}},"deletedValues":{"type":"array","items":{"$ref":"#/components/schemas/CompanySegmentListItem"}}}}]},"CompanySegmentListItem":{"type":"object","properties":{"id":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"value":{"$ref":"#/components/schemas/MultiLanguage"},"position":{"type":"integer","format":"int32"}}},"AnnouncementTranslateRequestDTO":{"type":"object","properties":{"sectionId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"languageCode":{"type":"string"},"title":{"type":"string"},"content":{"type":"string"},"resume":{"type":"string"}}},"AnnouncementTranslationDTO":{"type":"object","properties":{"title":{"$ref":"#/components/schemas/MultiLanguage"},"content":{"$ref":"#/components/schemas/MultiLanguage"},"resume":{"$ref":"#/components/schemas/MultiLanguage"}}},"RegistrationRequest":{"type":"object","properties":{"redirect_uris":{"type":"array","items":{"type":"string"}},"grant_types":{"type":"array","items":{"type":"string"}},"scope":{"type":"string"},"client_name":{"type":"string"}}},"PaginableGenericListResultTimesheetPublic":{"type":"object","properties":{"from":{"type":"integer","format":"int32"},"to":{"type":"integer","format":"int32"},"total":{"type":"integer","format":"int32"},"noContent":{"type":"boolean"},"results":{"type":"array","items":{"$ref":"#/components/schemas/TimesheetPublic"}}}},"TimesheetChangeHistory":{"type":"object","description":"Historical change entry for a timesheet","properties":{"startTime":{"type":"string","format":"date-time","description":"Start time registered in this historical version"},"endTime":{"type":"string","format":"date-time","description":"End time registered in this historical version"},"breaks":{"type":"array","description":"Break intervals registered in this historical version","items":{"$ref":"#/components/schemas/PersonTimesheetBreakDTO"}},"periodType":{"$ref":"#/components/schemas/PeriodTimeSheetType","description":"Timesheet period type for this historical version"},"changeReason":{"type":"string","description":"Reason that explains this change"},"changedBy":{"$ref":"#/components/schemas/TimesheetChangedBy","description":"User that applied this change (email and external id when available)"},"changedAt":{"type":"string","format":"date-time","description":"Timestamp when this change was applied"}}},"TimesheetChangedBy":{"type":"object","description":"User reference for a timesheet change","properties":{"email":{"type":"string","description":"User email when available"},"externalId":{"type":"string","description":"User external id when configured in Happyforce"}}},"TimesheetPublic":{"type":"object","description":"Single public timesheet entry","properties":{"email":{"type":"string","description":"Employee email for this entry, when resolved"},"externalId":{"type":"string","description":"Employee external id when configured in Happyforce"},"timeZone":{"type":"string","description":"IANA timezone ID stored on this timesheet entry when provided by the client"},"id":{"type":"string","description":"Timesheet entry ID","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"startTime":{"type":"string","format":"date-time","description":"Start time of the entry"},"endTime":{"type":"string","format":"date-time","description":"End time of the entry"},"active":{"type":"boolean","description":"Whether the entry is active"},"breaks":{"type":"array","description":"Break intervals inside the entry","items":{"$ref":"#/components/schemas/PersonTimesheetBreakDTO"}},"periodType":{"$ref":"#/components/schemas/PeriodTimeSheetType","description":"Timesheet period type"},"changeHistory":{"type":"array","description":"Historical modifications applied to this timesheet","items":{"$ref":"#/components/schemas/TimesheetChangeHistory"}}}},"DeletedTimesheetChangeHistory":{"type":"object","description":"Historical change entry before deletion","properties":{"startTime":{"type":"string","format":"date-time","description":"Start time registered in this historical version"},"endTime":{"type":"string","format":"date-time","description":"End time registered in this historical version"},"breaks":{"type":"array","description":"Break intervals registered in this historical version","items":{"$ref":"#/components/schemas/PersonTimesheetBreakDTO"}},"periodType":{"$ref":"#/components/schemas/PeriodTimeSheetType","description":"Timesheet period type for this historical version"},"changeReason":{"type":"string","description":"Reason that explains this change"},"changedBy":{"$ref":"#/components/schemas/DeletedTimesheetChangedBy","description":"User that applied this change (email and external id when available)"},"changedAt":{"type":"string","format":"date-time","description":"Timestamp when this change was applied"}}},"DeletedTimesheetChangedBy":{"type":"object","description":"User reference for a timesheet change","properties":{"email":{"type":"string","description":"User email when available"},"externalId":{"type":"string","description":"User external id when configured in Happyforce"}}},"DeletedTimesheetPublic":{"type":"object","description":"Single public deleted timesheet entry","properties":{"email":{"type":"string","description":"Employee email for this entry, when resolved"},"externalId":{"type":"string","description":"Employee external id when configured in Happyforce"},"timeZone":{"type":"string","description":"IANA timezone ID stored on this timesheet entry when provided by the client"},"id":{"type":"string","description":"Deleted timesheet record ID","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"originalTimesheetId":{"type":"string","description":"Original timesheet ID before deletion","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"startTime":{"type":"string","format":"date-time","description":"Start time of the original entry"},"endTime":{"type":"string","format":"date-time","description":"End time of the original entry"},"breaks":{"type":"array","description":"Break intervals inside the original entry","items":{"$ref":"#/components/schemas/PersonTimesheetBreakDTO"}},"periodType":{"$ref":"#/components/schemas/PeriodTimeSheetType","description":"Timesheet period type"},"changeHistory":{"type":"array","description":"Historical modifications applied before deletion","items":{"$ref":"#/components/schemas/DeletedTimesheetChangeHistory"}},"deletedAt":{"type":"string","format":"date-time","description":"Deletion timestamp"},"deletedBy":{"type":"string","description":"User ID that deleted the timesheet","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"deletedReason":{"type":"string","description":"Reason for deleting the timesheet"}}},"PaginableGenericListResultDeletedTimesheetPublic":{"type":"object","properties":{"from":{"type":"integer","format":"int32"},"to":{"type":"integer","format":"int32"},"total":{"type":"integer","format":"int32"},"noContent":{"type":"boolean"},"results":{"type":"array","items":{"$ref":"#/components/schemas/DeletedTimesheetPublic"}}}},"DataQuality":{"type":"string","description":"Quality of data of a specific field or metric","enum":["NO_DATA","LOW","WARNING","NORMAL","GOOD"]},"ScoreFactorStats":{"type":"object","description":"Self contained model that contains the results for a given score factor","properties":{"factorId":{"type":"string","description":"Id of the factor, so it can be matched on the metadata API","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"result":{"type":"number","format":"double","description":"Result for this factor"},"participants":{"type":"integer","format":"int32","description":"The unique participants"},"distribution":{"type":"object","additionalProperties":{"type":"integer","format":"int32"},"description":"How the votes of each participants are distributed"},"quality":{"$ref":"#/components/schemas/DataQuality","description":"Quality of the measurement, based on the participation"},"valuation":{"$ref":"#/components/schemas/ValuationType","description":"Valuation of the factor"},"questions":{"type":"array","description":"Questions used to compute the factor result","items":{"$ref":"#/components/schemas/ScoreQuestionStats"},"uniqueItems":true}}},"ScoreQuestionStats":{"type":"object","description":"Self contained model that contains the metadata for a given score question result","properties":{"questionId":{"type":"string","description":"Id of the question, so it can be matched on the metadata API","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"result":{"type":"number","format":"double","description":"Result for the question"},"participants":{"type":"integer","format":"int32","description":"The unique participants"},"distribution":{"type":"object","additionalProperties":{"type":"integer","format":"int32"},"description":"How the votes of each participants are distributed"},"quality":{"$ref":"#/components/schemas/DataQuality","description":"Quality of the measurement, based on the participation"},"valuation":{"$ref":"#/components/schemas/ValuationType","description":"Valuation of the factor"}}},"ScoreStats":{"type":"object","description":"Contains a Score stats during a period for a given period. It contains on the root of the object the last result, and on the dateResults field, the results for a given period","properties":{"scoreId":{"type":"string","description":"Id of the score","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"from":{"type":"string","format":"date-time","description":"Date from where the stats of this results start"},"to":{"type":"string","format":"date-time","description":"Date from where the stats of this results ends"},"result":{"type":"number","format":"double","description":"Result for the given score"},"std":{"type":"number","format":"double","description":"Standard deviation of score results"},"variance":{"type":"number","format":"double","description":"Variance of score results"},"p10":{"type":"number","format":"double","description":"10th percentile of score results"},"p25":{"type":"number","format":"double","description":"25th percentile of score results"},"p50":{"type":"number","format":"double","description":"50th percentile of score results"},"p75":{"type":"number","format":"double","description":"75th percentile of score results"},"p90":{"type":"number","format":"double","description":"90th percentile of score results"},"iqr":{"type":"number","format":"double","description":"Interquartile range of score results"},"cv":{"type":"number","format":"double","description":"Coefficient of variation of score results"},"outliersLow":{"type":"integer","format":"int32","description":"Number of low-end outliers in score results"},"outliersHigh":{"type":"integer","format":"int32","description":"Number of high-end outliers in score results"},"multimodal":{"type":"boolean","description":"Whether distribution appears multimodal"},"participants":{"type":"integer","format":"int32","description":"The unique participants"},"expectedParticipants":{"type":"integer","format":"int32","description":"The expected participants"},"dateResults":{"type":"array","description":"Results by date for the given score. (for each iteration requested)","items":{"$ref":"#/components/schemas/ScoreStatsDateResult"}},"distribution":{"type":"object","additionalProperties":{"type":"integer","format":"int32"},"description":"How the votes of each participants are distributed"},"factors":{"type":"array","description":"Individual results for each factor composing the score","items":{"$ref":"#/components/schemas/ScoreFactorStats"}},"quality":{"$ref":"#/components/schemas/DataQuality","description":"Quality of the measurement, based on the participation"},"valuation":{"$ref":"#/components/schemas/ValuationType","description":"Valuation of the score"}}},"ScoreStatsDateResult":{"type":"object","description":"Self contained model that contains the results for a given score","properties":{"date":{"type":"string","format":"date-time","description":"Date of beginning of the measurement on this result. Usually the period is one month"},"participants":{"type":"integer","format":"int32","description":"The unique participants"},"expectedParticipants":{"type":"integer","format":"int32","description":"The expected participants"},"result":{"type":"number","format":"double","description":"Result for the given score on that period"},"std":{"type":"number","format":"double","description":"Standard deviation of score results"},"variance":{"type":"number","format":"double","description":"Variance of score results"},"p10":{"type":"number","format":"double","description":"10th percentile of score results"},"p25":{"type":"number","format":"double","description":"25th percentile of score results"},"p50":{"type":"number","format":"double","description":"50th percentile of score results"},"p75":{"type":"number","format":"double","description":"75th percentile of score results"},"p90":{"type":"number","format":"double","description":"90th percentile of score results"},"iqr":{"type":"number","format":"double","description":"Interquartile range of score results"},"cv":{"type":"number","format":"double","description":"Coefficient of variation of score results"},"outliersLow":{"type":"integer","format":"int32","description":"Number of low-end outliers in score results"},"outliersHigh":{"type":"integer","format":"int32","description":"Number of high-end outliers in score results"},"multimodal":{"type":"boolean","description":"Whether distribution appears multimodal"},"distribution":{"type":"object","additionalProperties":{"type":"integer","format":"int32"},"description":"How the votes of each participants are distributed"},"factors":{"type":"array","description":"Individual results for each factor composing the score","items":{"$ref":"#/components/schemas/ScoreFactorStats"},"uniqueItems":true},"quality":{"$ref":"#/components/schemas/DataQuality","description":"Quality of the measurement, based on the participation"},"valuation":{"$ref":"#/components/schemas/ValuationType","description":"Valuation of the score"}}},"ValuationType":{"type":"string","description":"Valuation of data of a specific field or metric; usually based on the participation of employees in a survey or the number of responses to a question.","enum":["NO_DATA","BAD","WARNING","NEUTRAL","GOOD","EXCELLENT"]},"Participation Stats":{"type":"object","description":"\tContains a the participation stats for a given period.\n","properties":{"from":{"type":"string","format":"date-time","description":"Date from where the stats of this results start"},"to":{"type":"string","format":"date-time","description":"Date to where the stats of this results ends"},"participants":{"type":"integer","format":"int32","description":"Number of unique participants during the period"},"valuation":{"$ref":"#/components/schemas/ValuationType","description":"Valuation of the participation stats"},"newParticipants":{"type":"integer","format":"int64","description":"Number of unique participants during the period, that were not present in the previous period"},"lostParticipants":{"type":"integer","format":"int64","description":"Number of unique participants during the previous period, that are not present in the current period"},"dateResults":{"type":"array","description":"Results by date for participants","items":{"$ref":"#/components/schemas/ParticipationDateResultDTO"}}}},"ParticipationDateResultDTO":{"type":"object","properties":{"date":{"type":"string","format":"date-time","description":"Date of the stats"},"participants":{"type":"integer","format":"int64","description":"Number of participants on this date"}}},"HIStats":{"type":"object","description":"Self contained model that contains the HI stats for a certain period","properties":{"title":{"type":"string","description":"Title of the HI question"},"values":{"type":"array","description":"Allowed values for the HI question","items":{"$ref":"#/components/schemas/QuestionValue"},"uniqueItems":true},"ratings":{"type":"object","additionalProperties":{"type":"integer","format":"int32"},"description":"Votes received per type during this period","example":"{'1': x, '2' : y}"},"participants":{"type":"integer","format":"int32","description":"Number of unique participants on the period"},"expectedParticipants":{"type":"integer","format":"int32","description":"Number of expected participants on the period"},"periodIndex":{"type":"number","format":"double","description":"HI of the given period"},"dateResults":{"type":"array","description":"HI by date given period","items":{"$ref":"#/components/schemas/HIStatsDate"}}}},"HIStatsDate":{"type":"object","description":"HI stats for a given date","properties":{"date":{"type":"string","format":"date-time"},"index":{"type":"number","format":"double"},"participants":{"type":"integer","format":"int32"}}},"ENPSStats":{"type":"object","description":"Contains the ENPS stats during a period for a given. It contains on the root of the object the last result, and on the dateResults field, the results for a given period","properties":{"from":{"type":"string","format":"date-time","description":"Date from where the stats of this results start"},"to":{"type":"string","format":"date-time","description":"Date to where the stats of this results ends"},"result":{"type":"number","format":"double","description":"Result for the eNPS"},"averageResult":{"type":"number","format":"double","description":"Result for the eNPS in average mode"},"participants":{"type":"integer","format":"int32","description":"The unique participants"},"expectedParticipants":{"type":"integer","format":"int32","description":"The expected participants"},"dateResults":{"type":"array","description":"Results by date for the given score. (for each iteration requested)","items":{"$ref":"#/components/schemas/ENPSStatsDateResult"}},"dectractors":{"type":"integer","format":"int32","description":"Number of detractors"},"neutral":{"type":"integer","format":"int32","description":"Number of neutral"},"promoters":{"type":"integer","format":"int32","description":"Number of promoters"},"quality":{"$ref":"#/components/schemas/DataQuality","description":"Quality of the measurement, based on the participation"},"valuation":{"$ref":"#/components/schemas/ValuationType","description":"Valuation of the score"}}},"ENPSStatsDateResult":{"type":"object","description":"Self contained model that contains the metadata for the eNPS","properties":{"date":{"type":"string","format":"date-time","description":"Date of beginning of the measurement on this result. Usually the period is one month"},"participants":{"type":"integer","format":"int32","description":"The unique participants"},"expectedParticipants":{"type":"integer","format":"int32","description":"The expected participants"},"result":{"type":"number","format":"double","description":"Result for the eNPS on that period"},"averageResult":{"type":"number","format":"double","description":"Result for the eNPS in average mode"},"dectractors":{"type":"integer","format":"int32","description":"Number of detractors"},"neutral":{"type":"integer","format":"int32","description":"Number of neutral"},"promoters":{"type":"integer","format":"int32","description":"Number of promoters"},"quality":{"$ref":"#/components/schemas/DataQuality","description":"Quality of the measurement, based on the participation"},"valuation":{"$ref":"#/components/schemas/ValuationType","description":"Valuation of the eNPS"}}},"Activation Stats":{"type":"object","description":"\tContains a the activations stats for a given period.\n\tIt contains information about the number of invited and activated users and the accumulated values.\n\tby date.\n","properties":{"from":{"type":"string","format":"date-time","description":"Date from where the stats of this results start"},"to":{"type":"string","format":"date-time","description":"Date from where the stats of this results ends"},"totalInvited":{"type":"integer","format":"int64","description":"The number of invited employees during the period"},"totalActivated":{"type":"integer","format":"int64","description":"The number of activated employees during the period"},"valuation":{"$ref":"#/components/schemas/ValuationType","description":"Valuation of the activation stats"},"dateResults":{"type":"array","description":"Results by date for activations & invitations","items":{"$ref":"#/components/schemas/ActivationStatsDateResultPublicDTO"}}}},"ActivationStatsDateResultPublicDTO":{"type":"object","properties":{"date":{"type":"string","format":"date-time","description":"Date of the stats"},"invited":{"type":"integer","format":"int64","description":"Number of invited employees on this date"},"invitedAccumulated":{"type":"integer","format":"int64","description":"Accumulated number of invited employees until this date"},"activated":{"type":"integer","format":"int64","description":"Number of activated employees on this date"},"activatedAccumulated":{"type":"integer","format":"int64","description":"Accumulated number of activated employees until this date"}}},"Score":{"type":"object","description":"Self contained model that contains the metadata for a given score","properties":{"id":{"type":"string","description":"Id of the score","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"status":{"$ref":"#/components/schemas/ScoreStatuses","description":"Which is the status for a given score"},"name":{"type":"string","description":"Title of the score"},"description":{"type":"string","description":"Description of the score"},"factors":{"type":"array","description":"Factors that compose this score","items":{"$ref":"#/components/schemas/ScoreFactor"},"uniqueItems":true}}},"ScoreFactor":{"type":"object","description":"Self contained model that contains the metadata for a given factor","properties":{"id":{"type":"string","description":"Id of the factor","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"name":{"type":"string","description":"Title of the factor"},"description":{"type":"string","description":"Description of the factor"},"questions":{"type":"array","description":"Questions that compose this factor","items":{"$ref":"#/components/schemas/ScoreQuestion"},"uniqueItems":true}}},"ScoreQuestion":{"type":"object","description":"Self contained model that contains the metadata for a given question","properties":{"id":{"type":"string","description":"Id of the question","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"title":{"type":"string","description":"Title of the question"}}},"Area":{"type":"object","description":"Entity representing the information for a given area or department on your account","properties":{"id":{"type":"string","description":"Id of the area","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"name":{"type":"string","description":"Name of the area"},"children":{"type":"array","description":"sub areas under this one","items":{"description":"Entity representing the information for a given area or department on your account"},"uniqueItems":true}}},"Group":{"type":"object","description":"Entity representing the information for a given group on your account. A group is a way of tagging an employee, for later segmentation","properties":{"id":{"type":"string","description":"Id of the group","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"name":{"type":"string","description":"Name of the group"}}},"Profile":{"type":"object","description":"Entity representing the information for a given employee","properties":{"id":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"type":{"$ref":"#/components/schemas/CharacteristicType"},"name":{"type":"string"},"allowedValues":{"type":"array","items":{"$ref":"#/components/schemas/ProfileValue"},"uniqueItems":true}}},"ProfileValue":{"type":"object","description":"For a given LIST type profile property, details of one of the values","properties":{"id":{"type":"string","description":"Id of the value property","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"label":{"type":"string","description":"Label of the value property"}}},"AbstractInternalFeedback":{"type":"object","properties":{"id":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"date":{"type":"string","format":"date-time"},"comment":{"type":"string"},"hierarchyName":{"type":"string"},"signature":{"$ref":"#/components/schemas/SignerDTO"},"target":{"$ref":"#/components/schemas/TargetDTO"},"likes":{"type":"integer","format":"int32"},"dislikes":{"type":"integer","format":"int32"},"replies":{"type":"integer","format":"int32"},"inappropriates":{"type":"integer","format":"int32"},"flaggedInapropriate":{"type":"boolean"},"flaggedAnonymous":{"type":"boolean"},"primaryImage":{"type":"string"},"privated":{"type":"boolean"},"canLike":{"type":"boolean"},"canDislike":{"type":"boolean"},"canReply":{"type":"boolean"},"attachments":{"type":"array","items":{"$ref":"#/components/schemas/ExternalFeedbackAttachmentDTO"}},"feedbackType":{"$ref":"#/components/schemas/FeedbackType"}}},"ExternalFeedbackAttachmentDTO":{"type":"object","properties":{"type":{"type":"string","enum":["IMAGE","VIDEO","EXTERNAL_GIF"]},"fileURL":{"type":"string"}}},"SignerDTO":{"type":"object","properties":{"id":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"name":{"type":"string"}}},"TargetDTO":{"type":"object","properties":{"id":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"name":{"type":"string"},"type":{"$ref":"#/components/schemas/FeedbackTargetType"}}},"AppVersionDTO":{"type":"object","description":"App version update information","properties":{"minimumAppVersion":{"type":"string","description":"Minimum required app version for the platform"},"forceUpdate":{"type":"boolean","description":"Whether the update is forced"},"defaultLanguage":{"type":"string","description":"Default language code"},"message":{"type":"object","additionalProperties":{"type":"string"},"description":"Update message localized by language"},"storeURL":{"type":"string","description":"Store URL for the platform (App Store, Play Store, etc.)"}}},"BaseStatsResultDTO":{"type":"object","description":"Base stats result: date range, total comments, total votes, hierarchy name.","properties":{"from":{"type":"string","format":"date-time","description":"Start date of the period"},"to":{"type":"string","format":"date-time","description":"End date of the period"},"totalComments":{"type":"integer","format":"int64","description":"Total number of comments"},"totalVotes":{"type":"integer","format":"int64","description":"Total number of votes"},"hierarchyName":{"type":"string","description":"Name of the hierarchy (area) this result applies to"},"companyEmployeeQuestion":{"$ref":"#/components/schemas/QuestionInfoDTO"},"questionType":{"type":"string"}}},"QuestionFeedbackDTO":{"type":"object","description":"Feedback type configuration for a question: type, privacy, signature, max length, target, image.","properties":{"feedbackType":{"$ref":"#/components/schemas/FeedbackType","description":"Feedback type (e.g. SUGGESTION, RECOGNITION)"},"privateEnabled":{"type":"boolean","description":"Whether private comments are enabled"},"nonAnonymousEnabled":{"type":"boolean","description":"Whether non-anonymous (signed) comments are enabled"},"maxCommentLength":{"type":"integer","format":"int32","description":"Maximum comment length (default 3000)"},"targeted":{"type":"boolean","description":"Whether comments can be targeted (e.g. to a person or area)"},"imageURL":{"type":"string","description":"URL of the image for this feedback type"}}},"QuestionInfoDTO":{"type":"object","description":"Question info (summary): id, title, type, values, date range, representation, feedback mode, max comment length, feedback types.","properties":{"id":{"type":"string","description":"Question identifier","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"title":{"type":"string","description":"Question title"},"questionType":{"$ref":"#/components/schemas/QuestionType","description":"Question type (e.g. HI, CHECK_IN)"},"values":{"type":"array","description":"Available values/options","items":{"$ref":"#/components/schemas/QuestionValueDTO"},"uniqueItems":true},"from":{"type":"string","format":"date-time","description":"Start date of the question period"},"to":{"type":"string","format":"date-time","description":"End date of the question period"},"representation":{"type":"string","description":"How the question is represented (e.g. scale, list)","enum":["IMAGES","OPTIONS","MULTIPLE_OPTIONS","FEEDBACK","SCALE","GRADIENT_SLIDE"]},"feedbackMode":{"$ref":"#/components/schemas/FeedbackMode","description":"Feedback mode for comments"},"maxCommentLength":{"type":"integer","format":"int32","description":"Maximum comment length"},"feedbackTypes":{"type":"array","description":"Feedback types available for this question","items":{"$ref":"#/components/schemas/QuestionFeedbackDTO"},"uniqueItems":true}}},"PaginableGenericListResultPersonTimesheetDTO":{"type":"object","properties":{"from":{"type":"integer","format":"int32"},"to":{"type":"integer","format":"int32"},"total":{"type":"integer","format":"int32"},"noContent":{"type":"boolean"},"results":{"type":"array","items":{"$ref":"#/components/schemas/PersonTimesheetDTO"}}}},"PeriodTimesheetDTO":{"type":"object","properties":{"from":{"type":"string","format":"date"},"to":{"type":"string","format":"date"},"byPersonTimeSheet":{"type":"object","additionalProperties":{"type":"array","items":{"$ref":"#/components/schemas/PersonTimesheetDTO"}}},"totalCount":{"type":"integer","format":"int64"}}},"EmployeeTermsAndConditionsDTO":{"type":"object","description":"Terms and conditions: id, title, detail, and full content.","properties":{"id":{"type":"string","description":"Terms document identifier","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"title":{"type":"string","description":"Title"},"detail":{"type":"string","description":"Short detail or summary"},"content":{"type":"string","description":"Full content (e.g. HTML)"}}},"SurveyPendingStatusDTO":{"type":"object","description":"Pending survey/round status: ids, title, description, dates, question counts, time, signature mode, mandatory.","properties":{"roundId":{"type":"string","description":"Survey round identifier","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"surveyId":{"type":"string","description":"Survey identifier","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"title":{"type":"string","description":"Title"},"description":{"type":"string","description":"Description"},"imagePath":{"type":"string","description":"URL or path to the image"},"endDate":{"type":"string","format":"date-time","description":"End date"},"totalQuestions":{"type":"integer","format":"int32","description":"Total number of questions"},"pendingQuestions":{"type":"integer","format":"int32","description":"Number of pending questions"},"totalTime":{"type":"integer","format":"int32","description":"Total time (e.g. in minutes)"},"signatureMode":{"$ref":"#/components/schemas/SignatureMode","description":"Signature mode"},"mandatory":{"type":"boolean","description":"Whether the survey is mandatory"}}},"EmployeeStatusResponse":{"type":"object","properties":{"configCompleted":{"type":"boolean"},"requireVote":{"type":"boolean"},"pendingAnnouncements":{"type":"boolean"},"pendingSurveys":{"type":"boolean"}}},"EmployeeTimeZoneInfo":{"type":"object","properties":{"timezone":{"type":"string"},"alertDays":{"type":"array","items":{"type":"integer","format":"int32"}},"alertHour":{"type":"integer","format":"int32"},"alertMinute":{"type":"integer","format":"int32"}}},"GlobalStatsDTO":{"type":"object","description":"An extension of a the base Hierarchy Stats, containing the evolution, scores, votes distribution and sub children","properties":{"from":{"type":"string","format":"date-time"},"to":{"type":"string","format":"date-time"},"id":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"name":{"type":"string"},"hi":{"type":"number","format":"double"},"hiVariation":{"type":"number","format":"double"},"valuation":{"$ref":"#/components/schemas/ValuationType"},"participation":{"type":"number","format":"double"},"votes":{"type":"integer","format":"int64"},"hiEvolution":{"type":"array","items":{"$ref":"#/components/schemas/HIDateResultDTO"}},"votesDistribution":{"type":"array","items":{"$ref":"#/components/schemas/VotesDistributionDTO"}},"scores":{"type":"array","items":{"$ref":"#/components/schemas/ScoreStatsDTO"}},"children":{"type":"array","items":{"$ref":"#/components/schemas/HierarchyStatsDTO"}},"ranking":{"type":"array","items":{"$ref":"#/components/schemas/HIAreaRankingResultDTO"}}}},"HIAreaRankingResultDTO":{"type":"object","properties":{"from":{"type":"string","format":"date-time"},"to":{"type":"string","format":"date-time"},"id":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"name":{"type":"string"},"hi":{"type":"number","format":"double"},"hiVariation":{"type":"number","format":"double"},"valuation":{"$ref":"#/components/schemas/ValuationType"},"participation":{"type":"number","format":"double"},"votes":{"type":"integer","format":"int64"},"position":{"type":"integer","format":"int32"}}},"HIDateResultDTO":{"type":"object","description":"Date based results of the HI","properties":{"date":{"type":"string","format":"date-time"},"hi":{"type":"number","format":"double"},"valuation":{"$ref":"#/components/schemas/ValuationType"}}},"HierarchyStatsDTO":{"type":"object","description":"Base Hierarchy / Segment stats DTO. It contains information about the HI, participation, votes, etc.","properties":{"from":{"type":"string","format":"date-time"},"to":{"type":"string","format":"date-time"},"id":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"name":{"type":"string"},"hi":{"type":"number","format":"double"},"hiVariation":{"type":"number","format":"double"},"valuation":{"$ref":"#/components/schemas/ValuationType"},"participation":{"type":"number","format":"double"},"votes":{"type":"integer","format":"int64"}}},"ScoreStatsDTO":{"type":"object","description":"Score stats: score, value, valuation, variation, date range.","properties":{"score":{"$ref":"#/components/schemas/ScoreDTO","description":"Score definition"},"value":{"type":"number","format":"double","description":"Current value"},"valuation":{"$ref":"#/components/schemas/ValuationType","description":"Valuation type"},"variation":{"type":"number","format":"double","description":"Variation"},"from":{"type":"string","format":"date-time","description":"Start date"},"to":{"type":"string","format":"date-time","description":"End date"}}},"VotesDistributionDTO":{"type":"object","description":"How the votes are distributed","properties":{"value":{"$ref":"#/components/schemas/QuestionValueDTO"},"votesPercent":{"type":"number","format":"double"},"overallVotesPercent":{"type":"number","format":"double"}}},"ScoreDetailedStatsDTO":{"allOf":[{"$ref":"#/components/schemas/ScoreStatsDTO"},{"type":"object","properties":{"score":{"$ref":"#/components/schemas/ScoreDTO","description":"Score definition"},"value":{"type":"number","format":"double","description":"Current value"},"valuation":{"$ref":"#/components/schemas/ValuationType","description":"Valuation type"},"variation":{"type":"number","format":"double","description":"Variation"},"from":{"type":"string","format":"date-time","description":"Start date"},"to":{"type":"string","format":"date-time","description":"End date"},"pendingQuestions":{"type":"integer","format":"int32","description":"Number of pending questions"},"factors":{"type":"array","description":"Results per factor","items":{"$ref":"#/components/schemas/ScoreFactorResultDTO"}},"lastValue":{"type":"number","format":"double","description":"Last submitted value"}}}],"description":"Detailed score stats: variation, pending questions, factor results, last value."},"ScoreFactorResultDTO":{"type":"object","description":"Score factor result: factor, value, valuation, variation.","properties":{"factor":{"$ref":"#/components/schemas/ScoreFactorDTO","description":"Score factor definition"},"value":{"type":"number","format":"double","description":"Value"},"valuation":{"$ref":"#/components/schemas/ValuationType","description":"Valuation type"},"variation":{"type":"number","format":"double","description":"Variation"}}},"PaginableGenericListResultBaseStatsResultDTO":{"type":"object","properties":{"from":{"type":"integer","format":"int32"},"to":{"type":"integer","format":"int32"},"total":{"type":"integer","format":"int32"},"noContent":{"type":"boolean"},"results":{"type":"array","items":{"$ref":"#/components/schemas/BaseStatsResultDTO"}}}},"HIHierarchyStatsDTO":{"type":"object","description":"HI stats per hierarchy: hierarchy, index rating, variation, valuation, votes.","properties":{"hierarchy":{"$ref":"#/components/schemas/EmployeeHierarchyDTO"},"indexRating":{"type":"number","format":"double"},"indexVariation":{"type":"number","format":"double"},"valuation":{"$ref":"#/components/schemas/ValuationType"},"votes":{"type":"integer","format":"int64"}}},"PaginableGenericListResultEmployeeNotificationDTO":{"type":"object","properties":{"from":{"type":"integer","format":"int32"},"to":{"type":"integer","format":"int32"},"total":{"type":"integer","format":"int32"},"noContent":{"type":"boolean"},"results":{"type":"array","items":{"$ref":"#/components/schemas/EmployeeNotificationDTO"}}}},"MeEngagementDTO":{"type":"object","description":"Engagement values for the current user: personal, team, and company values and valuations.","properties":{"personalValue":{"type":"number","format":"double"},"personalValuation":{"$ref":"#/components/schemas/ValuationType"},"teamValue":{"type":"number","format":"double"},"teamValuation":{"$ref":"#/components/schemas/ValuationType"},"teamName":{"type":"string"},"companyValue":{"type":"number","format":"double"},"companyName":{"type":"string"},"companyValuation":{"$ref":"#/components/schemas/ValuationType"},"maxValue":{"type":"number","format":"double"},"totalQuestionsCount":{"type":"integer","format":"int32"},"currentQuestionsCount":{"type":"integer","format":"int32"},"outdatedQuestionsCount":{"type":"integer","format":"int32"},"ageQuality":{"$ref":"#/components/schemas/DataQuality"},"amountQuality":{"$ref":"#/components/schemas/DataQuality"}}},"MeOverviewDTO":{"type":"object","description":"Overview for the current user: flags for votes, engagement, HI details, personal report; minimum votes; deprecated HI/distribution fields.","properties":{"hasEnoughVotes":{"type":"boolean"},"hasEngagement":{"type":"boolean"},"hasHiDetails":{"type":"boolean"},"hasPersonalReport":{"type":"boolean"},"minimumVotes":{"type":"integer","format":"int32"},"hi":{"type":"number","format":"double","deprecated":true},"periodDays":{"type":"integer","format":"int32","deprecated":true},"totalVotes":{"type":"integer","format":"int32","deprecated":true},"distribution":{"type":"object","additionalProperties":{"type":"integer","format":"int32","deprecated":true},"deprecated":true},"votesByDate":{"type":"object","additionalProperties":{"type":"integer","format":"int32","deprecated":true},"deprecated":true},"questionValues":{"type":"array","deprecated":true,"items":{"$ref":"#/components/schemas/QuestionValueDTO"},"uniqueItems":true},"engagementResume":{"$ref":"#/components/schemas/MeEngagementDTO","deprecated":true}}},"MeStatusDTO":{"type":"object","description":"Current user status: whether there is an unseen personal report.","properties":{"unSeenPersonalReport":{"type":"boolean","description":"Whether the user has an unseen personal report"}}},"MePersonalReportStatusDTO":{"type":"object","description":"Personal report status: enabled, has current report, pending/completed actions for next report.","properties":{"enabled":{"type":"boolean","description":"Whether personal reports are enabled for the user"},"hasCurrentPersonalReport":{"type":"boolean","description":"Whether the user has a report for the current month"},"pendingForNextReport":{"type":"integer","format":"int32","description":"Number of actions (e.g. score questions) pending for the next report"},"completedForNextReport":{"type":"integer","format":"int32","description":"Number of actions completed for the next report"}}},"MeHIStatusDTO":{"type":"object","description":"HI status for the current user: HI value, period, total votes, distribution, votes by date, question values, valuation.","properties":{"hi":{"type":"number","format":"double"},"periodDays":{"type":"integer","format":"int32"},"totalVotes":{"type":"integer","format":"int32"},"distribution":{"type":"object","additionalProperties":{"type":"integer","format":"int32"}},"votesByDate":{"type":"object","additionalProperties":{"type":"integer","format":"int32"}},"questionValues":{"type":"array","items":{"$ref":"#/components/schemas/QuestionValueDTO"},"uniqueItems":true},"valuation":{"$ref":"#/components/schemas/ValuationType"}}},"MeHIVotesDistributionDTO":{"type":"object","description":"HI votes distribution for the current user: distribution map, question values, total votes, period days.","properties":{"distribution":{"type":"object","additionalProperties":{"type":"integer","format":"int32"}},"questionValues":{"type":"array","items":{"$ref":"#/components/schemas/QuestionValueDTO"},"uniqueItems":true},"totalVotes":{"type":"integer","format":"int32"},"periodDays":{"type":"integer","format":"int32"}}},"MeHICalendarDTO":{"type":"object","description":"HI calendar for the current user: date range, votes by date, total votes, HI value, dates with notes, question values.","properties":{"from":{"type":"string","format":"date-time"},"to":{"type":"string","format":"date-time"},"hasEnoughVotes":{"type":"boolean"},"totalVotes":{"type":"integer","format":"int32"},"hi":{"type":"number","format":"double"},"votesByDate":{"type":"object","additionalProperties":{"type":"integer","format":"int32"}},"hasNoteOnDates":{"type":"array","items":{"type":"string","format":"date"}},"questionValues":{"type":"array","items":{"$ref":"#/components/schemas/QuestionValueDTO"},"uniqueItems":true}}},"PaginableGenericListResultMeHICalendarDTO":{"type":"object","properties":{"from":{"type":"integer","format":"int32"},"to":{"type":"integer","format":"int32"},"total":{"type":"integer","format":"int32"},"noContent":{"type":"boolean"},"results":{"type":"array","items":{"$ref":"#/components/schemas/MeHICalendarDTO"}}}},"MeHICalendarNoteDTO":{"type":"object","description":"Note for a date in the HI calendar.","properties":{"note":{"type":"string","description":"Note text"}}},"CompanyInfoDTO":{"type":"object","description":"Company info: name and image path.","properties":{"companyName":{"type":"string","description":"Company name"},"companyImagePath":{"type":"string","description":"URL or path to the company image"}}},"InfoMessageDTO":{"type":"object","description":"Informational message with type (e.g. HTML) and content.","properties":{"type":{"$ref":"#/components/schemas/InfoMessageType","description":"Message type"},"content":{"type":"string","description":"Message content (e.g. HTML string)"}}},"InfoMessageType":{"type":"string","description":"Type of info message: HTML","enum":["HTML"]},"PaginableGenericListResultInfoMessageDTO":{"type":"object","properties":{"from":{"type":"integer","format":"int32"},"to":{"type":"integer","format":"int32"},"total":{"type":"integer","format":"int32"},"noContent":{"type":"boolean"},"results":{"type":"array","items":{"$ref":"#/components/schemas/InfoMessageDTO"}}}},"AbstractFeedbackTypeDTO":{"type":"object","description":"Base configuration for a feedback type (e.g. RECOGNITION, SUGGESTION). Defines privacy, signature, target mode, attachments, verification, and limits.","properties":{"type":{"$ref":"#/components/schemas/FeedbackType","description":"Feedback type identifier (e.g. RECOGNITION, SUGGESTION, CRITICISM)"},"privateMode":{"$ref":"#/components/schemas/FeedbackPrivacyMode","description":"Privacy mode for this feedback type"},"signatureMode":{"$ref":"#/components/schemas/SignatureMode","description":"Signature mode: ANONYMOUS, OPTIONAL, MANDATORY, etc."},"targetMode":{"$ref":"#/components/schemas/FeedbackTargetMode","description":"Target mode (e.g. free target, hierarchy)"},"allowedAttachementTypes":{"type":"array","description":"Allowed attachment types for comments of this feedback type","items":{"type":"string","enum":["IMAGE","VIDEO","EXTERNAL_GIF"]},"uniqueItems":true},"requiresVerification":{"type":"boolean","description":"Whether comments of this type require verification before publishing"},"maxLength":{"type":"integer","format":"int32","description":"Maximum allowed length for the message"},"imageURL":{"type":"string","description":"URL of the image/icon representing this feedback type"},"feedbackLevelMode":{"$ref":"#/components/schemas/FeedbackLevelMode","description":"Feedback level mode configuration"},"availableCommentCount":{"type":"integer","format":"int64","description":"Number of comments still available for the user in this feedback type"},"defaultSignatureMode":{"$ref":"#/components/schemas/DefaultSignatureType","description":"Default signature mode for this feedback type. Indicates whether the anonymous toggle should default to SIGNED (non-anonymous) or ANONYMOUS"}},"required":["type"]},"DefaultSignatureType":{"type":"string","description":"Default signature mode for feedback types. SIGNED means the comment will be non-anonymous by default, ANONYMOUS means it will be anonymous by default.","enum":["SIGNED","ANONYMOUS"]},"RecognitionFeedbackTypeDTO":{"type":"object","allOf":[{"$ref":"#/components/schemas/AbstractFeedbackTypeDTO"},{"type":"object","properties":{"values":{"type":"array","description":"List of recognition values (badges, categories) available for this feedback type","items":{"$ref":"#/components/schemas/RecognitionValueDTO"}}}}],"description":"Configuration for RECOGNITION feedback type. Includes list of recognition values (e.g. badges) that can be selected.","required":["type"]},"StandardFeedbackTypeDTO":{"type":"object","allOf":[{"$ref":"#/components/schemas/AbstractFeedbackTypeDTO"}],"description":"Configuration for standard feedback types (e.g. SUGGESTION, CONGRATULATION, CRITICISM).","required":["type"]},"FeedbackTargetGroupDTO":{"type":"object","description":"Group of feedback targets (e.g. hierarchy or list of people).","properties":{"id":{"type":"string","description":"Unique identifier of the target group","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"name":{"type":"string","description":"Display name of the group"},"type":{"$ref":"#/components/schemas/FeedbackTargetType","description":"Target type (e.g. hierarchy, free target)"},"targets":{"type":"array","description":"List of targets in this group","items":{"$ref":"#/components/schemas/FeedbackTargetDTO"}}}},"FeedbackStatusDTO":{"type":"object","description":"Count of unread comments: private and public.","properties":{"unreadPrivate":{"type":"integer","format":"int32","description":"Number of unread private comments"},"unreadPublic":{"type":"integer","format":"int32","description":"Number of unread public comments"}}},"QuestionCommentsDTO":{"type":"object","description":"Paginated list of comments for a question, with question info and range (from, to, total).","properties":{"question":{"$ref":"#/components/schemas/QuestionDTO","description":"The question these comments belong to"},"from":{"type":"integer","format":"int32","description":"Start index of the returned page"},"to":{"type":"integer","format":"int32","description":"End index of the returned page"},"total":{"type":"integer","format":"int64","description":"Total number of comments"},"comments":{"type":"array","description":"List of comments in this page","items":{"$ref":"#/components/schemas/EmployeeCommentDTO"}}}},"FeedbackWallDTO":{"type":"object","description":"Feedback wall: id, title, display order, and whether it is the default wall.","properties":{"wallId":{"type":"string","description":"Unique identifier of the wall","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"title":{"type":"string","description":"Title of the wall"},"order":{"type":"integer","format":"int32","description":"Display order"},"byDefault":{"type":"boolean","description":"Whether this wall is the default"}}},"IdeaInitiativeContainerStatus":{"type":"string","description":"Status of the idea/initiative container: ONGOING, NEAR_END","enum":["ONGOING","NEAR_END"]},"PaginableGenericListResultAbstractFeedbackContainerDTO":{"type":"object","properties":{"from":{"type":"integer","format":"int32"},"to":{"type":"integer","format":"int32"},"total":{"type":"integer","format":"int32"},"noContent":{"type":"boolean"},"results":{"type":"array","items":{"oneOf":[{"$ref":"#/components/schemas/FeedbackIdeaInitiativeContainerDTO"}]}}}},"EmployeeDataInfo":{"type":"object","properties":{"email":{"type":"string"},"companyName":{"type":"string"},"companyId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"sessionToken":{"type":"string"},"language":{"type":"string"}}},"PaginableGenericListResultConversationDTO":{"type":"object","properties":{"from":{"type":"integer","format":"int32"},"to":{"type":"integer","format":"int32"},"total":{"type":"integer","format":"int32"},"noContent":{"type":"boolean"},"results":{"type":"array","items":{"$ref":"#/components/schemas/ConversationDTO"}}}},"ConversationsStatusDTO":{"type":"object","description":"Conversations status: unread count and total count.","properties":{"unread":{"type":"integer","format":"int32","description":"Number of unread conversations"},"total":{"type":"integer","format":"int32","description":"Total number of conversations"}}},"ConversationStarterSuggestionDTO":{"type":"object","description":"Suggested conversation starter for a context (e.g. a comment): starter text and reason.","properties":{"starter":{"type":"string","description":"Suggested text to start the conversation"},"reason":{"type":"string","description":"Reason or context for suggesting this starter"}}},"AnniversaryContentDTO":{"allOf":[{"$ref":"#/components/schemas/ExtraContentDTO"},{"type":"object","properties":{"title":{"type":"string","description":"Title of the anniversary content"},"body":{"type":"string","description":"Body text"}}}],"description":"Anniversary/celebration content: title and body. Extends extra content (media, type, shareable)."},"ExtraContentDTO":{"type":"object","description":"Base class for extra content (quote, celebration): media, type, shareable. Discriminated by type.","discriminator":{"propertyName":"type","mapping":{"QUOTE":"#/components/schemas/QuoteContentDTO","CELEBRATION":"#/components/schemas/AnniversaryContentDTO"}},"properties":{"media":{"type":"string","description":"Media URL or identifier"},"mediaType":{"$ref":"#/components/schemas/ExtraContentMediaType","description":"Type of media"},"type":{"$ref":"#/components/schemas/ExtraContentType","description":"Content type: QUOTE, CELEBRATION, OTHER"},"shareable":{"type":"boolean","description":"Whether this content can be shared"}},"required":["type"]},"ExtraContentMediaType":{"type":"string","description":"Media type: IMAGE, VIDEO, NONE","enum":["IMAGE","VIDEO","NONE"]},"QuoteContentDTO":{"allOf":[{"$ref":"#/components/schemas/ExtraContentDTO"},{"type":"object","properties":{"quote":{"type":"string","description":"Quote text"},"author":{"type":"string","description":"Author of the quote"}}}],"description":"Quote content: quote text and author. Extends extra content (media, type, shareable)."},"CompanyCharacteristicBaseDTO":{"type":"object","description":"Base for company characteristic (employee segment): discriminated by questionType (LIST or DATE).","discriminator":{"propertyName":"questionType","mapping":{"LIST":"#/components/schemas/CompanyCharacteristicListDTO","DATE":"#/components/schemas/CompanyCharacteristicDateDTO"}},"properties":{"id":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"question":{"type":"string"},"questionType":{"$ref":"#/components/schemas/CharacteristicType"}},"required":["question","questionType"]},"CompanyCharacteristicDateDTO":{"allOf":[{"$ref":"#/components/schemas/CompanyCharacteristicBaseDTO"}],"description":"Company characteristic of type DATE."},"CompanyCharacteristicListDTO":{"allOf":[{"$ref":"#/components/schemas/CompanyCharacteristicBaseDTO"},{"type":"object","properties":{"values":{"type":"array","items":{"$ref":"#/components/schemas/CompanyCharacteristicListItemDTO"}}}}],"description":"Company characteristic of type LIST: list of segment values."},"CompanyCharacteristicListItemDTO":{"type":"object","description":"Single item in a list characteristic: id, value, position.","properties":{"id":{"type":"string","description":"Item identifier","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"value":{"type":"string","description":"Display value"},"position":{"type":"integer","format":"int32","description":"Display order position"}}},"ParticipationProfileConfigurationDTO":{"type":"object","description":"Participation profile configuration: hierarchy and characteristics (segments) for the user.","properties":{"hierarchy":{"type":"array","description":"Hierarchy nodes applicable to the user","items":{"$ref":"#/components/schemas/EmployeeHierarchyDTO"}},"characteristics":{"type":"array","description":"Company characteristics (segment questions) and their values","items":{"oneOf":[{"$ref":"#/components/schemas/CompanyCharacteristicDateDTO"},{"$ref":"#/components/schemas/CompanyCharacteristicListDTO"}]}}}},"QuestionCommentActionsDTO":{"type":"object","description":"Available comment actions for a question: pending counts, feedback level mode, supported reply types.","properties":{"pendingComments":{"type":"integer","format":"int64","description":"Number of pending comments"},"pendingReplies":{"type":"integer","format":"int64","description":"Number of pending replies"},"feedbackLevelMode":{"$ref":"#/components/schemas/FeedbackLevelMode","description":"Feedback level mode for this question"},"supportedReplyTypes":{"type":"array","description":"Reply types supported for this question","items":{"$ref":"#/components/schemas/ReplyTypeDTO"},"uniqueItems":true}}},"ReplyTypeDTO":{"type":"object","description":"Reply type option: id, title, and image URL.","properties":{"id":{"type":"integer","format":"int32","description":"Reply type identifier"},"title":{"type":"string","description":"Display title"},"imageURL":{"type":"string","description":"URL of the image for this reply type"}}},"ChatType":{"type":"string","description":"Type of chat context","enum":["PERSONAL_CHAT"]},"ChatCommandDTO":{"type":"object","description":"Chat command: label, command identifier, optional expiry, and parameters.","properties":{"label":{"type":"string","description":"Display label for the command"},"command":{"type":"string","description":"Command identifier"},"expiresMs":{"type":"integer","format":"int64","description":"Expiration time in milliseconds (optional)"},"params":{"type":"object","additionalProperties":{"type":"string"},"description":"Optional key-value parameters for the command"}}},"ChatItemDTO":{"type":"object","description":"Chat item: type (OBJECT or TEXT), ownership, content, timestamp, and optional commands.","properties":{"type":{"$ref":"#/components/schemas/ChatItemType","description":"Item type: OBJECT or TEXT"},"isOwn":{"type":"boolean","description":"Whether the message is from the current user"},"content":{"description":"Message content (object or text)"},"timestamp":{"type":"string","format":"date-time","description":"Timestamp of the message"},"commands":{"type":"array","description":"Optional commands for this item","items":{"$ref":"#/components/schemas/ChatCommandDTO"}}}},"ChatItemType":{"type":"string","description":"Chat item type: OBJECT or TEXT","enum":["OBJECT","TEXT"]},"PaginableGenericListResultChatItemDTO":{"type":"object","properties":{"from":{"type":"integer","format":"int32"},"to":{"type":"integer","format":"int32"},"total":{"type":"integer","format":"int32"},"noContent":{"type":"boolean"},"results":{"type":"array","items":{"$ref":"#/components/schemas/ChatItemDTO"}}}},"PaginableGenericListResultAnnouncementHeaderForEmployeeDTO":{"type":"object","properties":{"from":{"type":"integer","format":"int32"},"to":{"type":"integer","format":"int32"},"total":{"type":"integer","format":"int32"},"noContent":{"type":"boolean"},"results":{"type":"array","items":{"$ref":"#/components/schemas/AnnouncementHeaderForEmployeeDTO"}}}},"AnnouncementStatusDTO":{"type":"object","description":"Announcement status for the employee: count of unread announcements.","properties":{"unread":{"type":"integer","format":"int32","description":"Number of unread announcements"}}},"AnnouncementSectionDTO":{"type":"object","description":"Announcement section: id, title, layout, representation, listing type, search, and HTML content.","properties":{"id":{"type":"string","description":"Section identifier","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"title":{"type":"string","description":"Section title"},"layout":{"type":"string","description":"Banner layout type","enum":["HORIZONTAL","VERTICAL","HTML"]},"representation":{"type":"string","description":"Representation type","enum":["COVER","STANDARD"]},"listingType":{"type":"string","description":"Listing type","enum":["STANDARD","DATE_GROUPS","DIRECT"]},"searchEnabled":{"type":"boolean","description":"Whether search is enabled for this section"},"htmlContent":{"type":"string","description":"HTML content of the section"}}},"PaginableGenericListResultEmployeeCommentDTO":{"type":"object","properties":{"from":{"type":"integer","format":"int32"},"to":{"type":"integer","format":"int32"},"total":{"type":"integer","format":"int32"},"noContent":{"type":"boolean"},"results":{"type":"array","items":{"$ref":"#/components/schemas/EmployeeCommentDTO"}}}},"UserAppActivationTokenDTO":{"type":"object","properties":{"appActivationToken":{"type":"string"}}},"PaginableGenericResultListSurveyDTO":{"type":"object","properties":{"from":{"type":"integer","format":"int32"},"to":{"type":"integer","format":"int64"},"total":{"type":"integer","format":"int64"},"result":{"type":"array","items":{"$ref":"#/components/schemas/SurveyDTO"}}}},"SurveyReportSimpleDTO":{"type":"object","description":"Lightweight survey report representation for listings","properties":{"id":{"type":"string","description":"Unique identifier for this report","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"forUsers":{"type":"array","description":"User IDs for manager reports. Only populated when the report is for managers, containing the set of manager user IDs that share the same segmentation.","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true},"targetHierarchyId":{"type":"string","description":"Target hierarchy ID for manager reports. This represents the specific hierarchy area from the manager's managed areas that this report is generated for. Null for admin reports or when not applicable.","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"status":{"type":"string","description":"Status of the report generation: ONGOING (being generated), DONE (completed successfully), RETRYING (failed, will retry), FAILED (failed after max retries)","enum":["ONGOING","DONE","RETRYING","FAILED"]},"reportTypeTitle":{"$ref":"#/components/schemas/MultiLanguage","description":"Title of the report type (e.g., 'Global Report', 'Engagement Report', 'Multi-Area Report'). This field is translatable."},"characteristics":{"type":"array","description":"Employee characteristics used to filter the data analyzed in this report (e.g., department, tenure, role). Empty set means all characteristics.","items":{"oneOf":[{"$ref":"#/components/schemas/EmployeeCharacteristicValueBoolean"},{"$ref":"#/components/schemas/EmployeeCharacteristicValueDate"},{"$ref":"#/components/schemas/EmployeeCharacteristicValueList"}]},"uniqueItems":true},"groupIds":{"type":"array","description":"Group IDs used to filter the data analyzed in this report. Empty set means all groups.","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}}},"DistributionDTO":{"type":"object","properties":{"negative":{"type":"number","format":"double","description":"Percentage of negative responses (0-100)"},"neutral":{"type":"number","format":"double","description":"Percentage of neutral responses (0-100)"},"positive":{"type":"number","format":"double","description":"Percentage of positive responses (0-100)"}}},"SegmentContextDTO":{"type":"object","properties":{"segmentId":{"type":"string","description":"Segment ID (ObjectId) - e.g., gender, department","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"segmentValues":{"type":"array","description":"List of segment value IDs (ObjectIds) - e.g., [femaleId, maleId] or [techId]","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},"hierarchyId":{"type":"string","description":"Optional hierarchy ID (ObjectId) - e.g., IT department","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"groups":{"type":"array","description":"Optional list of group IDs (ObjectIds)","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}}},"SegmentValueDTO":{"type":"object","properties":{"segmentId":{"type":"string","description":"Segment ID (ObjectId) - e.g., gender, department","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"segmentValueId":{"type":"string","description":"Segment value ID (ObjectId) - e.g., femaleId, maleId, techId","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"hierarchyId":{"type":"string","description":"Optional hierarchy ID (ObjectId) - e.g., IT department","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"groups":{"type":"array","description":"Optional list of group IDs (ObjectIds)","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}},"distribution":{"$ref":"#/components/schemas/DistributionDTO","description":"Distribution of responses for this segment"}}},"SubjectDTO":{"type":"object","properties":{"blocks":{"type":"array","description":"List of blocks with results this evidence refers to","items":{"$ref":"#/components/schemas/SurveyBlockResultDTO"}},"questions":{"type":"array","description":"List of questions with results this evidence refers to","items":{"$ref":"#/components/schemas/SurveyQuestionResultDTO"}}}},"SurveyBlockResultDTO":{"type":"object","properties":{"blockId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"title":{"$ref":"#/components/schemas/MultiLanguage"},"description":{"$ref":"#/components/schemas/MultiLanguage"},"questions":{"type":"array","items":{"oneOf":[{"$ref":"#/components/schemas/OpenSurveyQuestion"},{"$ref":"#/components/schemas/OptionsSurveyQuestion"},{"$ref":"#/components/schemas/ScaleSurveyQuestion"}]}},"blockIndex":{"type":"number","format":"double"},"blockHasIndex":{"type":"boolean"},"distribution":{"type":"array","items":{"$ref":"#/components/schemas/SurveyParticipantsDistribution"}},"participants":{"type":"integer","format":"int32"},"completedParticipants":{"type":"integer","format":"int32"},"votes":{"type":"integer","format":"int32"},"comments":{"type":"integer","format":"int32"},"byInvitedQuality":{"$ref":"#/components/schemas/DataQuality"},"byActivatedQuality":{"$ref":"#/components/schemas/DataQuality"}}},"SurveyParticipantsDistribution":{"type":"object","properties":{"classification":{"type":"string","enum":["NEGATIVE","NEUTRAL","POSITIVE","SKIPPED"]},"count":{"type":"integer","format":"int32"}}},"SurveyQuestionResultDTO":{"type":"object","properties":{"question":{"oneOf":[{"$ref":"#/components/schemas/OpenSurveyQuestion"},{"$ref":"#/components/schemas/OptionsSurveyQuestion"},{"$ref":"#/components/schemas/ScaleSurveyQuestion"}]},"questionIndex":{"type":"number","format":"double"},"ratings":{"type":"object","additionalProperties":{"type":"integer","format":"int64"}},"participants":{"type":"integer","format":"int32"},"distribution":{"type":"array","items":{"$ref":"#/components/schemas/SurveyParticipantsDistribution"}},"votes":{"type":"integer","format":"int32"},"skipped":{"type":"integer","format":"int32"},"comments":{"type":"integer","format":"int32"}}},"SurveyReportDTO":{"type":"object","description":"Survey report entity containing AI-generated analysis sections","properties":{"id":{"type":"string","description":"Unique identifier for this report","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"companyId":{"type":"string","description":"Company ID this report belongs to","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"surveyId":{"type":"string","description":"Survey ID this report analyzes","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"roundId":{"type":"string","description":"Survey round ID this report analyzes","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"generatedAt":{"type":"string","format":"date-time","description":"Timestamp when the report was generated"},"configId":{"type":"string","description":"The config/template ID as MongoDB ObjectId. Determines which report configuration was used.","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"forUsers":{"type":"array","description":"User IDs for manager reports. Only populated when configId indicates a manager report, containing the set of manager user IDs that share the same segmentation (hierarchy, segments, groups).","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true},"targetHierarchyId":{"type":"string","description":"Target hierarchy ID for manager reports. This represents the specific hierarchy area from the manager's managed areas that this report is generated for. Null for admin reports or when not applicable.","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"reportObjective":{"type":"string","description":"Report objective or purpose that guided the AI generation (e.g., 'identify key drivers of satisfaction')"},"tone":{"type":"string","description":"Tone used in the report content (e.g., 'professional', 'conversational', 'analytical')"},"reportTypeTitle":{"$ref":"#/components/schemas/MultiLanguage","description":"Title of the report type (e.g., 'Global Report', 'Engagement Report', 'Multi-Area Report'). This field is translatable."},"hierarchyIds":{"type":"array","description":"Organizational hierarchy IDs used to filter the data analyzed in this report. Empty set means all hierarchies.","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true},"characteristics":{"type":"array","description":"Employee characteristics used to filter the data analyzed in this report (e.g., department, tenure, role). Empty set means all characteristics.","items":{"oneOf":[{"$ref":"#/components/schemas/EmployeeCharacteristicValueBoolean"},{"$ref":"#/components/schemas/EmployeeCharacteristicValueDate"},{"$ref":"#/components/schemas/EmployeeCharacteristicValueList"}]},"uniqueItems":true},"groupIds":{"type":"array","description":"Group IDs used to filter the data analyzed in this report. Empty set means all groups.","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true},"sections":{"type":"array","description":"List of report sections containing the AI-generated analysis. Sections can be OVERVIEW (executive summary) or STANDARD (detailed analysis with evidence).","items":{"oneOf":[{"$ref":"#/components/schemas/SurveyReportOverviewSectionDTO"},{"$ref":"#/components/schemas/SurveyReportStandardSectionDTO"}]}},"scaleNormalized":{"type":"boolean","description":"Indicates if the survey index scale has been normalized (e.g., to a 0–100 scale)."},"scaleMin":{"type":"integer","format":"int32","description":"Minimum value of the survey index scale used in the analytics for this report."},"scaleMax":{"type":"integer","format":"int32","description":"Maximum value of the survey index scale used in the analytics for this report."},"reportStatus":{"type":"string","description":"Status of the report: SURVEY_ONGOING (survey not expired), ONGOING/DONE/RETRYING/FAILED (report generation status when survey is expired)","enum":["SURVEY_ONGOING","ONGOING","DONE","RETRYING","FAILED"]}}},"SurveyReportEvidenceDTO":{"type":"object","description":"Evidence supporting statements in survey report sections. Uses a structured format that matches the new simplified evidence types specification.","properties":{"evidenceType":{"type":"string","description":"The specific type of evidence. Valid values: SCORE_LEVEL, DOMINANT_DISTRIBUTION, HIGH_NEUTRALITY, HIGH_NEGATIVE_CONCENTRATION, SEGMENT_DIFFERENCE, SEGMENT_OUTLIER, KEY_DRIVER, ACTION_PRIORITY, STRONG_CORRELATION, NEGATIVE_CORRELATION, CORRELATION_BY_SEGMENT, SYNTHETIC_INSIGHT","enum":["SCORE_LEVEL","DOMINANT_DISTRIBUTION","HIGH_NEUTRALITY","HIGH_NEGATIVE_CONCENTRATION","SEGMENT_DIFFERENCE","SEGMENT_OUTLIER","KEY_DRIVER","ACTION_PRIORITY","STRONG_CORRELATION","NEGATIVE_CORRELATION","CORRELATION_BY_SEGMENT","SYNTHETIC_INSIGHT"]},"subject":{"$ref":"#/components/schemas/SubjectDTO","description":"The source of the evidence: which questions or blocks this evidence refers to."},"segmentContext":{"$ref":"#/components/schemas/SegmentContextDTO","description":"Optional segment context indicating which segments this evidence points to. Used for segment_difference, segment_outlier, and correlation_by_segment types. All IDs are ObjectIds."},"distribution":{"$ref":"#/components/schemas/DistributionDTO","description":"Distribution of responses in percentages (negative, neutral, positive)."},"value":{"type":"number","format":"double","description":"Numeric value for the evidence (score, correlation coefficient, driver strength, etc.)."},"values":{"type":"array","description":"Array of segment values with their distributions. Required only for segment_difference type.","items":{"$ref":"#/components/schemas/SegmentValueDTO"}},"text":{"$ref":"#/components/schemas/MultiLanguage","description":"Text content for synthetic insights in multiple languages. Required only for synthetic_insight type."},"severity":{"type":"string","description":"Severity level indicating impact and polarity (LOW_POSITIVE, MEDIUM_POSITIVE, HIGH_POSITIVE, LOW_NEGATIVE, MEDIUM_NEGATIVE, HIGH_NEGATIVE).","enum":["LOW_POSITIVE","MEDIUM_POSITIVE","HIGH_POSITIVE","LOW_NEGATIVE","MEDIUM_NEGATIVE","HIGH_NEGATIVE"]},"confidence":{"type":"number","format":"double","description":"Statistical confidence level (0.0-1.0)."},"dominant":{"type":"string","description":"Dominant sentiment in the distribution (NEGATIVE, NEUTRAL, POSITIVE).","enum":["NEGATIVE","NEUTRAL","POSITIVE"]},"correlationType":{"type":"string","description":"Type of correlation (POSITIVE, NEGATIVE).","enum":["POSITIVE","NEGATIVE"]},"strength":{"type":"string","description":"Strength of correlation or relationship (WEAK, MODERATE, STRONG).","enum":["WEAK","MODERATE","STRONG"]},"priority":{"type":"string","description":"Priority level for action items (LOW, MEDIUM, HIGH).","enum":["LOW","MEDIUM","HIGH"]},"title":{"$ref":"#/components/schemas/MultiLanguage","description":"Short, concise title for this evidence in multiple languages"},"description":{"$ref":"#/components/schemas/MultiLanguage","description":"Human-readable description of what this evidence shows in multiple languages"},"reference":{"type":"string","description":"Optional reference indicating what this evidence is compared against (AVERAGE, REST_OF_POPULATION, OTHER_SEGMENTS, BENCHMARK).","enum":["AVERAGE","REST_OF_POPULATION","OTHER_SEGMENTS","BENCHMARK"]},"supportingCommentIds":{"type":"array","description":"Optional list of up to 10 comment IDs that provide direct supporting evidence for this item.","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"}}}},"SurveyReportOverviewSectionDTO":{"type":"object","allOf":[{"$ref":"#/components/schemas/SurveyReportSectionBaseDTO"},{"type":"object","properties":{"content":{"$ref":"#/components/schemas/MultiLanguage","description":"Executive summary content in multiple languages"}}}],"description":"Overview section providing a high-level executive summary of key findings, participation metrics, and overall sentiment. This section does not include detailed evidence.","required":["type"]},"SurveyReportSectionBaseDTO":{"type":"object","description":"Base class for survey report sections. Each section contains AI-generated analysis content. Sections can be either OVERVIEW (executive summary) or STANDARD (detailed analysis with supporting evidence).","discriminator":{"propertyName":"type","mapping":{"OVERVIEW":"#/components/schemas/SurveyReportOverviewSectionDTO","STANDARD":"#/components/schemas/SurveyReportStandardSectionDTO"}},"properties":{"sectionId":{"type":"string","description":"Unique identifier for this section (matches the instruction ID used during report generation)"},"type":{"type":"string","description":"Type of section: OVERVIEW (executive summary) or STANDARD (detailed analysis with evidence)","enum":["OVERVIEW","STANDARD"]},"title":{"$ref":"#/components/schemas/MultiLanguage","description":"Section title in multiple languages"}},"required":["sectionId","title","type"]},"SurveyReportStandardSectionDTO":{"type":"object","allOf":[{"$ref":"#/components/schemas/SurveyReportSectionBaseDTO"},{"type":"object","properties":{"content":{"$ref":"#/components/schemas/MultiLanguage","description":"Detailed analysis content in multiple languages"},"evidences":{"type":"array","description":"List of evidence objects supporting the statements in this section. Each evidence provides analytical backing for claims made in the content.","items":{"$ref":"#/components/schemas/SurveyReportEvidenceDTO"}}}}],"description":"Standard section containing detailed analysis with supporting evidence. Includes the main content, data references, and a list of evidence objects that support the statements made in the content.","required":["type"]},"QuestionsByUsersStatsDTO":{"type":"object","properties":{"totalQuestions":{"type":"integer","format":"int32"}}},"AnnouncementByUserStatsDTO":{"type":"object","properties":{"totalAnnouncements":{"type":"integer","format":"int32"}}},"SurveyPeriodResultDTO":{"type":"object","properties":{"from":{"type":"string","format":"date-time"},"to":{"type":"string","format":"date-time"},"result":{"$ref":"#/components/schemas/SurveyResultDTO"},"hierarchyIds":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true},"characteristics":{"type":"array","items":{"oneOf":[{"$ref":"#/components/schemas/EmployeeCharacteristicValueBoolean"},{"$ref":"#/components/schemas/EmployeeCharacteristicValueDate"},{"$ref":"#/components/schemas/EmployeeCharacteristicValueList"}]},"uniqueItems":true},"groupIds":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}}},"SurveyResultDTO":{"type":"object","properties":{"roundId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"from":{"type":"string","format":"date-time"},"to":{"type":"string","format":"date-time"},"nonAnonymous":{"type":"boolean"},"nonEnoughEmployees":{"type":"boolean"},"periodHasIndex":{"type":"boolean"},"periodIndex":{"type":"number","format":"double"},"distribution":{"type":"array","items":{"$ref":"#/components/schemas/SurveyParticipantsDistribution"}},"participants":{"type":"integer","format":"int64"},"completedParticipants":{"type":"integer","format":"int64"},"expectedActivatedParticipants":{"type":"integer","format":"int64"},"expectedInvitedParticipants":{"type":"integer","format":"int64"},"votes":{"type":"integer","format":"int64"},"comments":{"type":"integer","format":"int32"},"blocks":{"type":"array","items":{"$ref":"#/components/schemas/SurveyBlockResultDTO"}},"byInvitedQuality":{"$ref":"#/components/schemas/DataQuality"},"byActivatedQuality":{"$ref":"#/components/schemas/DataQuality"},"scaleNormalized":{"type":"boolean"},"scaleMin":{"type":"integer","format":"int32"},"scaleMax":{"type":"integer","format":"int32"}}},"GroupingResultDTOSurveyGroupingResultDTO":{"type":"object","properties":{"groupingType":{"$ref":"#/components/schemas/GroupingType"},"noTypes":{"type":"boolean"},"results":{"type":"array","items":{"$ref":"#/components/schemas/SurveyGroupingResultDTO"}}}},"SurveyGroupingResultDTO":{"type":"object","properties":{"hierarchyId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"characteristic":{"oneOf":[{"$ref":"#/components/schemas/EmployeeCharacteristicValueBoolean"},{"$ref":"#/components/schemas/EmployeeCharacteristicValueDate"},{"$ref":"#/components/schemas/EmployeeCharacteristicValueList"}]},"groupId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"result":{"$ref":"#/components/schemas/SurveyResultDTO"},"nonEnoughEmployees":{"type":"boolean"}}},"SurveyEvolutionResultDTO":{"type":"object","properties":{"grouping":{"$ref":"#/components/schemas/DateGroupingTypes"},"from":{"type":"string","format":"date-time"},"to":{"type":"string","format":"date-time"},"results":{"type":"array","items":{"$ref":"#/components/schemas/SurveyPeriodResultDTO"}}}},"BenchmarkRankingType":{"type":"string","description":"Types of ranking for company benchmarks based on percentile scores","enum":["TOP_10","TOP_20","TOP_30","TOP_40","TOP_50","TOP_75","NO_TOP","UNKNOWN"]},"CorrelationLevel":{"type":"string","description":"Level of correlation between two variables","enum":["NONE","LOW","MODERATE","HIGH","TOTAL"]},"ScoreFactorStatsV2Result":{"type":"object","properties":{"id":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"result":{"type":"number","format":"double"},"variation":{"type":"number","format":"double"},"std":{"type":"number","format":"double"},"variance":{"type":"number","format":"double"},"p10":{"type":"number","format":"double"},"p25":{"type":"number","format":"double"},"p50":{"type":"number","format":"double"},"p75":{"type":"number","format":"double"},"p90":{"type":"number","format":"double"},"iqr":{"type":"number","format":"double"},"cv":{"type":"number","format":"double"},"outliersLow":{"type":"integer","format":"int32"},"outliersHigh":{"type":"integer","format":"int32"},"multimodal":{"type":"boolean"},"summaryContext":{"type":"string","enum":["NONE","SPREAD","POLARIZED"]},"quality":{"$ref":"#/components/schemas/DataQuality"},"valuation":{"$ref":"#/components/schemas/ValuationType"},"participants":{"type":"integer","format":"int32"},"distribution":{"type":"object","additionalProperties":{"type":"integer","format":"int32"}},"questions":{"type":"array","items":{"$ref":"#/components/schemas/ScoreQuestionStatsResult"}}}},"ScoreQuestionStatsResult":{"type":"object","properties":{"id":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"result":{"type":"number","format":"double"},"variation":{"type":"number","format":"double"},"distribution":{"type":"object","additionalProperties":{"type":"integer","format":"int32"}},"participants":{"type":"integer","format":"int32"},"quality":{"$ref":"#/components/schemas/DataQuality"},"valuation":{"$ref":"#/components/schemas/ValuationType"}}},"ScoreStatsV2DTO":{"type":"object","properties":{"id":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"status":{"$ref":"#/components/schemas/ScoreStatuses"},"from":{"type":"string","format":"date-time"},"to":{"type":"string","format":"date-time"},"groupingType":{"$ref":"#/components/schemas/DateGroupingTypes"},"filtered":{"type":"boolean"},"results":{"type":"array","items":{"$ref":"#/components/schemas/ScoreStatsV2Result"}}}},"ScoreStatsV2Result":{"type":"object","properties":{"from":{"type":"string","format":"date-time"},"to":{"type":"string","format":"date-time"},"result":{"type":"number","format":"double"},"variation":{"type":"number","format":"double"},"std":{"type":"number","format":"double"},"variance":{"type":"number","format":"double"},"p10":{"type":"number","format":"double"},"p25":{"type":"number","format":"double"},"p50":{"type":"number","format":"double"},"p75":{"type":"number","format":"double"},"p90":{"type":"number","format":"double"},"iqr":{"type":"number","format":"double"},"cv":{"type":"number","format":"double"},"outliersLow":{"type":"integer","format":"int32"},"outliersHigh":{"type":"integer","format":"int32"},"multimodal":{"type":"boolean"},"summaryContext":{"type":"string","enum":["NONE","SPREAD","POLARIZED"]},"quality":{"$ref":"#/components/schemas/DataQuality"},"valuation":{"$ref":"#/components/schemas/ValuationType"},"hiImpact":{"$ref":"#/components/schemas/CorrelationLevel"},"enpsImpact":{"$ref":"#/components/schemas/CorrelationLevel"},"measuringNow":{"type":"boolean"},"companyBenchmark":{"type":"number","format":"double"},"globalBenchmark":{"type":"number","format":"double"},"industryBenchmark":{"type":"number","format":"double"},"ranking":{"$ref":"#/components/schemas/BenchmarkRankingType"},"participants":{"type":"integer","format":"int32"},"expectedParticipants":{"type":"integer","format":"int32"},"distribution":{"type":"object","additionalProperties":{"type":"integer","format":"int32"}},"factors":{"type":"array","items":{"$ref":"#/components/schemas/ScoreFactorStatsV2Result"}}}},"ScorePersonalFactorResultDTO":{"type":"object","properties":{"factorId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"score":{"type":"number","format":"double"},"valuation":{"$ref":"#/components/schemas/ValuationType"}}},"ScorePersonalStatsResultDTO":{"type":"object","properties":{"scoreId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"to":{"type":"string","format":"date-time"},"score":{"type":"number","format":"double"},"valuation":{"$ref":"#/components/schemas/ValuationType"},"factors":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/ScorePersonalFactorResultDTO"}}}},"ScoresModel":{"type":"string","description":"Score model to use (CORE or DERIVED)","enum":["CORE","DERIVED"]},"ScoreImpactResultDTO":{"type":"object","properties":{"scoreId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"result":{"type":"number","format":"double"},"quality":{"$ref":"#/components/schemas/DataQuality"},"valuation":{"$ref":"#/components/schemas/ValuationType"},"level":{"$ref":"#/components/schemas/CorrelationLevel"},"correlation":{"type":"number","format":"double"}}},"GroupingResultDTOScoreStatsGroupingResulsDTO":{"type":"object","properties":{"groupingType":{"$ref":"#/components/schemas/GroupingType"},"noTypes":{"type":"boolean"},"results":{"type":"array","items":{"$ref":"#/components/schemas/ScoreStatsGroupingResulsDTO"}}}},"ScoreGroupingResultDTO":{"type":"object","properties":{"hierarchyId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"characteristic":{"oneOf":[{"$ref":"#/components/schemas/EmployeeCharacteristicValueBoolean"},{"$ref":"#/components/schemas/EmployeeCharacteristicValueDate"},{"$ref":"#/components/schemas/EmployeeCharacteristicValueList"}]},"groupId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"result":{"$ref":"#/components/schemas/ScoreStatsV2Result"},"nonEnoughEmployees":{"type":"boolean"}}},"ScoreStatsGroupingResulsDTO":{"type":"object","properties":{"id":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"status":{"$ref":"#/components/schemas/ScoreStatuses"},"from":{"type":"string","format":"date-time"},"to":{"type":"string","format":"date-time"},"groupingType":{"$ref":"#/components/schemas/DateGroupingTypes"},"filtered":{"type":"boolean"},"results":{"type":"array","items":{"$ref":"#/components/schemas/ScoreGroupingResultDTO"}}}},"RecognitionAggregatedItemDTO":{"type":"object","properties":{"value":{"$ref":"#/components/schemas/RecognitionValueDTO"},"count":{"type":"integer","format":"int32"}}},"RecognitionAggregatedResultDTO":{"type":"object","properties":{"from":{"type":"string","format":"date-time"},"to":{"type":"string","format":"date-time"},"total":{"type":"integer","format":"int32"},"results":{"type":"array","items":{"$ref":"#/components/schemas/RecognitionAggregatedItemDTO"},"uniqueItems":true}}},"RecognitionRankingDTO":{"type":"object","properties":{"from":{"type":"string","format":"date-time"},"to":{"type":"string","format":"date-time"},"ranking":{"type":"array","items":{"$ref":"#/components/schemas/RecognitionRankingItemDTO"}}}},"RecognitionRankingItemDTO":{"type":"object","properties":{"id":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"count":{"type":"integer","format":"int32"},"name":{"type":"string"},"sourceType":{"$ref":"#/components/schemas/RecognitionSourceType"},"targetType":{"$ref":"#/components/schemas/FeedbackTargetType"}}},"RecognitionSourceType":{"type":"string","description":"Recognition source type","enum":["USER","AREA"]},"QuestionStatsDateResult":{"type":"object","properties":{"date":{"type":"string","format":"date-time"},"indexRating":{"type":"number","format":"double"},"ratings":{"type":"array","items":{"$ref":"#/components/schemas/VoteRating"},"uniqueItems":true},"totalVotes":{"type":"integer","format":"int32"},"totalParticipants":{"type":"integer","format":"int32"},"skippedVotes":{"type":"integer","format":"int32"},"participationPercent":{"type":"number","format":"double"}}},"QuestionStatsResult":{"type":"object","properties":{"votes":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/QuestionStatsDateResult"}},"ratings":{"type":"object","additionalProperties":{"type":"integer","format":"int32"}},"ratingPercents":{"type":"object","additionalProperties":{"type":"number","format":"double"}},"ratingsVariation":{"type":"object","additionalProperties":{"type":"integer","format":"int32"}},"invitedParticipants":{"type":"integer","format":"int64"},"expectedParticipants":{"type":"integer","format":"int64"},"periodParticipants":{"type":"integer","format":"int64"},"periodParticipantsVariation":{"type":"integer","format":"int64"},"periodParticipantsVariationPercent":{"type":"number","format":"double"},"newParticipants":{"type":"integer","format":"int64"},"lostParticipants":{"type":"integer","format":"int64"},"participationPercent":{"type":"number","format":"double"},"votesPeriod":{"type":"integer","format":"int64"},"votesVariation":{"type":"integer","format":"int64"},"votesVariationPercent":{"type":"number","format":"double"},"periodIndex":{"type":"number","format":"double"},"periodIndexVariation":{"type":"number","format":"double"},"periodIndexVariationPercent":{"type":"number","format":"double"},"valuation":{"$ref":"#/components/schemas/ValuationType"},"quality":{"$ref":"#/components/schemas/DataQuality"},"from":{"type":"string","format":"date-time"},"to":{"type":"string","format":"date-time"},"skippedVotes":{"type":"integer","format":"int64"}}},"QuestionStatsResultDTO":{"type":"object","properties":{"from":{"type":"string","format":"date-time"},"to":{"type":"string","format":"date-time"},"results":{"type":"array","items":{"$ref":"#/components/schemas/QuestionStatsResult"}},"periodResults":{"$ref":"#/components/schemas/QuestionStatsResult"}}},"VoteRating":{"type":"object","properties":{"puntuation":{"type":"integer","format":"int32"},"votes":{"type":"integer","format":"int32"}}},"GroupingResultDTOParticipationGroupingResultDTO":{"type":"object","properties":{"groupingType":{"$ref":"#/components/schemas/GroupingType"},"noTypes":{"type":"boolean"},"results":{"type":"array","items":{"$ref":"#/components/schemas/ParticipationGroupingResultDTO"}}}},"ParticipationGroupingResultDTO":{"type":"object","properties":{"hierarchyId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"characteristic":{"oneOf":[{"$ref":"#/components/schemas/EmployeeCharacteristicValueBoolean"},{"$ref":"#/components/schemas/EmployeeCharacteristicValueDate"},{"$ref":"#/components/schemas/EmployeeCharacteristicValueList"}]},"groupId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"activated":{"type":"integer","format":"int64"},"participants":{"type":"integer","format":"int64"},"invited":{"type":"integer","format":"int64"},"participationPercent":{"type":"number","format":"double"},"participations":{"type":"integer","format":"int64"},"variationPercent":{"type":"number","format":"double"},"newParticipants":{"type":"integer","format":"int64"},"lostParticipants":{"type":"integer","format":"int64"},"sleepingParticipants":{"type":"integer","format":"int64"},"quality":{"$ref":"#/components/schemas/DataQuality"},"valuation":{"$ref":"#/components/schemas/ValuationType"},"nonEnoughEmployees":{"type":"boolean"}}},"ParticipationDateDTO":{"type":"object","properties":{"date":{"type":"string","format":"date-time"},"activated":{"type":"integer","format":"int64"},"participants":{"type":"integer","format":"int64"}}},"ParticipationPeriodDTO":{"type":"object","properties":{"grouping":{"$ref":"#/components/schemas/DateGroupingTypes"},"from":{"type":"string","format":"date-time"},"to":{"type":"string","format":"date-time"},"activated":{"type":"integer","format":"int64"},"participants":{"type":"integer","format":"int64"},"participantsVariationPercent":{"type":"number","format":"double"},"invited":{"type":"integer","format":"int64"},"participations":{"type":"integer","format":"int64"},"newParticipants":{"type":"integer","format":"int64"},"lostParticipants":{"type":"integer","format":"int64"},"valuation":{"$ref":"#/components/schemas/ValuationType"},"results":{"type":"array","items":{"$ref":"#/components/schemas/ParticipationDateDTO"}}}},"ParticipationDistributionDTO":{"type":"object","properties":{"total":{"type":"integer","format":"int32"},"mean":{"type":"number","format":"double"},"percentile50":{"type":"number","format":"double"},"percentile70":{"type":"number","format":"double"},"percentile90":{"type":"number","format":"double"},"min":{"type":"integer","format":"int32"},"max":{"type":"integer","format":"int32"}}},"IdeasDistribution":{"type":"object","properties":{"numIdeas":{"type":"integer","format":"int32"},"numIdeasInitiatives":{"type":"integer","format":"int32"}}},"InnovationAggregatedResultDTO":{"type":"object","properties":{"byPersonRatio":{"type":"number","format":"double"},"innovationScore":{"type":"number","format":"double"},"valuation":{"$ref":"#/components/schemas/ValuationType"},"totalIdeas":{"type":"integer","format":"int32"},"ideasInInitiative":{"type":"integer","format":"int32"},"previousTotalIdeas":{"type":"integer","format":"int32"},"finishedInitiatives":{"type":"integer","format":"int32"},"activeInitiatives":{"type":"integer","format":"int32"},"previousActiveInitiatives":{"type":"integer","format":"int32"},"previousFinishedInitiatives":{"type":"integer","format":"int32"},"ideasDistribution":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/IdeasDistribution"},"description":"Distribution of ideas by feedback status phase","properties":{"NO_PHASE":{"$ref":"#/components/schemas/IdeasDistribution"},"ONGOING":{"$ref":"#/components/schemas/IdeasDistribution"},"DISCARDED":{"$ref":"#/components/schemas/IdeasDistribution"},"ACCEPTED":{"$ref":"#/components/schemas/IdeasDistribution"}}},"ideasByStatus":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/IdeasDistribution"}}}},"InnovationRankingItemDTO":{"type":"object","properties":{"id":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"totalIdeas":{"type":"integer","format":"int32"},"totalAcceptedIdeas":{"type":"integer","format":"int32"}}},"InnovationRankingResultDTO":{"type":"object","properties":{"type":{"type":"string","enum":["USER","HIERARCHY"]},"from":{"type":"string","format":"date-time"},"to":{"type":"string","format":"date-time"},"ranking":{"type":"array","items":{"$ref":"#/components/schemas/InnovationRankingItemDTO"}}}},"HiStatsResultDTO":{"type":"object","properties":{"from":{"type":"string","format":"date-time"},"to":{"type":"string","format":"date-time"},"ranking":{"$ref":"#/components/schemas/BenchmarkRankingType"},"results":{"type":"array","items":{"$ref":"#/components/schemas/QuestionStatsResult"}},"periodResults":{"$ref":"#/components/schemas/QuestionStatsResult"},"companyBenchmark":{"type":"number","format":"double"},"globalBenchmark":{"type":"number","format":"double"},"industryBenchmark":{"type":"number","format":"double"},"valuation":{"$ref":"#/components/schemas/ValuationType"},"quality":{"$ref":"#/components/schemas/DataQuality"},"filtered":{"type":"boolean"}}},"IndividualHIStatsResultMemberDTO":{"type":"object","properties":{"encryptedId":{"type":"string"},"hi":{"type":"number","format":"double"},"valuation":{"$ref":"#/components/schemas/ValuationType"},"votes":{"type":"array","items":{"$ref":"#/components/schemas/IndividualHIStatsResultVoteDTO"}},"hasConversations":{"type":"boolean"},"allowConversations":{"type":"boolean"}}},"IndividualHIStatsResultVoteDTO":{"type":"object","properties":{"date":{"type":"string","format":"date-time"},"rating":{"type":"integer","format":"int32"}}},"IndividualHIStatsResultsDTO":{"type":"object","properties":{"from":{"type":"string","format":"date-time"},"to":{"type":"string","format":"date-time"},"members":{"type":"array","items":{"$ref":"#/components/schemas/IndividualHIStatsResultMemberDTO"}}}},"GroupingResultDTOHIGroupingStatsDTO":{"type":"object","properties":{"groupingType":{"$ref":"#/components/schemas/GroupingType"},"noTypes":{"type":"boolean"},"results":{"type":"array","items":{"$ref":"#/components/schemas/HIGroupingStatsDTO"}}}},"HIGroupingStatsDTO":{"type":"object","properties":{"hierarchyId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"characteristic":{"oneOf":[{"$ref":"#/components/schemas/EmployeeCharacteristicValueBoolean"},{"$ref":"#/components/schemas/EmployeeCharacteristicValueDate"},{"$ref":"#/components/schemas/EmployeeCharacteristicValueList"}]},"groupId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"companyBenchmark":{"type":"number","format":"double"},"result":{"type":"number","format":"double"},"variation":{"type":"number","format":"double"},"quality":{"$ref":"#/components/schemas/DataQuality"},"valuation":{"$ref":"#/components/schemas/ValuationType"},"nonEnoughEmployees":{"type":"boolean"},"participants":{"type":"integer","format":"int32"},"expectedParticipants":{"type":"integer","format":"int32"}}},"CorrelationFactorResultItemDTO":{"type":"object","properties":{"id":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"correlation":{"type":"number","format":"double"},"level":{"$ref":"#/components/schemas/CorrelationLevel"}}},"CorrelationHIResultItemDTO":{"type":"object","properties":{"type":{"type":"string","enum":["SCORE"]},"level":{"$ref":"#/components/schemas/CorrelationLevel"},"correlation":{"type":"number","format":"double"},"averageHI":{"type":"number","format":"double"},"scoreId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"factorCorrelations":{"type":"array","items":{"$ref":"#/components/schemas/CorrelationFactorResultItemDTO"}}}},"CorrelationHIResultDTO":{"type":"object","properties":{"from":{"type":"string","format":"date-time"},"to":{"type":"string","format":"date-time"},"correlations":{"type":"array","items":{"$ref":"#/components/schemas/CorrelationHIResultItemDTO"}}}},"ClassificationEntry":{"type":"object","properties":{"source":{"$ref":"#/components/schemas/EmployeeClassificationType"},"target":{"$ref":"#/components/schemas/EmployeeClassificationType"},"count":{"type":"integer","format":"int32"}}},"HIClassificationStatsDTO":{"type":"object","properties":{"quality":{"$ref":"#/components/schemas/DataQuality"},"valuation":{"$ref":"#/components/schemas/ValuationType"},"classification":{"type":"object","additionalProperties":{"type":"integer","format":"int32"}},"prevClassification":{"type":"object","additionalProperties":{"type":"integer","format":"int32"}},"funnel":{"type":"array","items":{"$ref":"#/components/schemas/ClassificationEntry"}}}},"FeedbackDateStats":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/FeedbackType"},"count":{"type":"integer","format":"int32"}}},"FeedbackStats":{"type":"object","properties":{"total":{"type":"integer","format":"int32"},"results":{"type":"object","additionalProperties":{"type":"array","items":{"$ref":"#/components/schemas/FeedbackDateStats"}}},"totalByType":{"type":"object","additionalProperties":{"type":"integer","format":"int32"}}}},"ENPSStatsDTO":{"type":"object","properties":{"enabled":{"type":"boolean"},"from":{"type":"string","format":"date-time"},"to":{"type":"string","format":"date-time"},"lastMeasurement":{"type":"string","format":"date-time"},"nextMeasurement":{"type":"string","format":"date-time"},"results":{"type":"array","items":{"$ref":"#/components/schemas/ENPSStatsResultDTO"}},"filtered":{"type":"boolean"}}},"ENPSStatsResultDTO":{"type":"object","properties":{"from":{"type":"string","format":"date-time"},"to":{"type":"string","format":"date-time"},"result":{"type":"number","format":"double"},"variation":{"type":"number","format":"double"},"averageResult":{"type":"number","format":"double"},"averageVariation":{"type":"number","format":"double"},"quality":{"$ref":"#/components/schemas/DataQuality"},"valuation":{"$ref":"#/components/schemas/ValuationType"},"measuringNow":{"type":"boolean"},"companyBenchmark":{"type":"number","format":"double"},"companyAverageBenchmark":{"type":"number","format":"double"},"globalBenchmark":{"type":"number","format":"double"},"globalAverageBenchmark":{"type":"number","format":"double"},"industryBenchmark":{"type":"number","format":"double"},"industryAverageBenchmark":{"type":"number","format":"double"},"ranking":{"$ref":"#/components/schemas/BenchmarkRankingType"},"classification":{"type":"object","additionalProperties":{"type":"integer","format":"int32"}},"distribution":{"type":"object","additionalProperties":{"type":"integer","format":"int32"}},"participants":{"type":"integer","format":"int32"},"expectedParticipants":{"type":"integer","format":"int32"}}},"IndividualENPSStatsResultMemberDTO":{"type":"object","properties":{"encryptedId":{"type":"string"},"result":{"type":"number","format":"double"},"valuation":{"$ref":"#/components/schemas/ValuationType"},"votes":{"type":"array","items":{"$ref":"#/components/schemas/IndividualENPSStatsResultVoteDTO"}},"hasConversations":{"type":"boolean"},"allowConversations":{"type":"boolean"}}},"IndividualENPSStatsResultVoteDTO":{"type":"object","properties":{"date":{"type":"string","format":"date-time"},"rating":{"type":"integer","format":"int32"},"valuation":{"$ref":"#/components/schemas/ValuationType"}}},"IndividualENPSStatsResultsDTO":{"type":"object","properties":{"from":{"type":"string","format":"date-time"},"to":{"type":"string","format":"date-time"},"members":{"type":"array","items":{"$ref":"#/components/schemas/IndividualENPSStatsResultMemberDTO"}}}},"ENPSGroupingStatsDTO":{"type":"object","properties":{"hierarchyId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"characteristic":{"oneOf":[{"$ref":"#/components/schemas/EmployeeCharacteristicValueBoolean"},{"$ref":"#/components/schemas/EmployeeCharacteristicValueDate"},{"$ref":"#/components/schemas/EmployeeCharacteristicValueList"}]},"groupId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"date":{"type":"string","format":"date-time"},"previousDate":{"type":"string","format":"date-time"},"companyBenchmark":{"type":"number","format":"double"},"companyAverageBenchmark":{"type":"number","format":"double"},"result":{"type":"number","format":"double"},"averageResult":{"type":"number","format":"double"},"variation":{"type":"number","format":"double"},"averageVariation":{"type":"number","format":"double"},"quality":{"$ref":"#/components/schemas/DataQuality"},"valuation":{"$ref":"#/components/schemas/ValuationType"},"nonEnoughEmployees":{"type":"boolean"},"participants":{"type":"integer","format":"int32"},"expectedParticipants":{"type":"integer","format":"int32"}}},"GroupingResultDTOENPSGroupingStatsDTO":{"type":"object","properties":{"groupingType":{"$ref":"#/components/schemas/GroupingType"},"noTypes":{"type":"boolean"},"results":{"type":"array","items":{"$ref":"#/components/schemas/ENPSGroupingStatsDTO"}}}},"ENPSClassification":{"type":"string","description":"Type of employee classification in the eNPS survey","enum":["PROMOTERS","PASSIVES","DETRACTORS"]},"ENPSClassificationStatsDTO":{"type":"object","properties":{"quality":{"$ref":"#/components/schemas/DataQuality"},"valuation":{"$ref":"#/components/schemas/ValuationType"},"classification":{"type":"object","additionalProperties":{"type":"integer","format":"int32"}},"prevClassification":{"type":"object","additionalProperties":{"type":"integer","format":"int32"}},"funnel":{"type":"array","items":{"$ref":"#/components/schemas/ClassificationEntry"}}}},"EmployeeStatsDTO":{"type":"object","properties":{"invited":{"type":"integer","format":"int64"},"activated":{"type":"integer","format":"int64"},"sleeping":{"type":"integer","format":"int64"}}},"CommentsStatTypes":{"type":"string","description":"Comments statistics types","enum":["COUNT","INTERACTIONS","TAGS","AUTHORS","EMOTIONS","POSITIVITY","FEEDBACK_TYPE","REPLIES","REFEREED","POSITIVENESS"]},"CommentStatsEntity":{"type":"object","properties":{"title":{"type":"string"},"relevance":{"type":"number","format":"double"},"averageRating":{"type":"number","format":"double"},"averagePositiveness":{"type":"number","format":"double"}}},"CommentsDateStatsDTO":{"type":"object","properties":{"from":{"type":"string","format":"date-time"},"to":{"type":"string","format":"date-time"},"comments":{"type":"integer","format":"int64"},"commentsVariation":{"type":"integer","format":"int64"},"replies":{"type":"integer","format":"int64"},"authors":{"type":"integer","format":"int64"},"likes":{"type":"integer","format":"int64"},"uniqueLikes":{"type":"integer","format":"int64"},"dislikes":{"type":"integer","format":"int64"},"uniqueDislikes":{"type":"integer","format":"int64"},"inappropiates":{"type":"integer","format":"int64"},"refereed":{"type":"integer","format":"int64"},"markedAsInappropriate":{"type":"integer","format":"int64"},"positivity":{"type":"number","format":"double"},"emotions":{"type":"object","additionalProperties":{"type":"number","format":"double"}},"clusters":{"type":"array","items":{"$ref":"#/components/schemas/StatValueDouble"}},"languages":{"type":"array","items":{"$ref":"#/components/schemas/StatValueInteger"}},"entities":{"type":"array","items":{"$ref":"#/components/schemas/CommentStatsEntity"}},"concepts":{"type":"array","items":{"$ref":"#/components/schemas/CommentStatsEntity"}},"feedbackTypeCount":{"type":"object","additionalProperties":{"type":"integer","format":"int64"}},"positivenessCount":{"type":"object","additionalProperties":{"type":"integer","format":"int32"}}}},"StatValueDouble":{"type":"object","properties":{"title":{"type":"string"},"value":{"type":"number","format":"double"}}},"StatValueInteger":{"type":"object","properties":{"title":{"type":"string"},"value":{"type":"integer","format":"int32"}}},"VoeCategoryCountDTO":{"type":"object","properties":{"id":{"type":"string"},"name":{"$ref":"#/components/schemas/MultiLanguage"},"count":{"type":"integer","format":"int32"},"subcategories":{"type":"array","items":{}}}},"ActivationResult":{"type":"object","properties":{"activated":{"type":"integer","format":"int64"},"invited":{"type":"integer","format":"int64"},"valuation":{"$ref":"#/components/schemas/ValuationType"}}},"ActivationPeriodResumeResultDTO":{"type":"object","properties":{"from":{"type":"string","format":"date-time"},"to":{"type":"string","format":"date-time"},"totalInvited":{"type":"integer","format":"int64"},"totalActivated":{"type":"integer","format":"int64"},"valuation":{"$ref":"#/components/schemas/ValuationType"},"activatedVariationPercent":{"type":"number","format":"double"},"invitedVariationPercent":{"type":"number","format":"double"}}},"ActivationGroupingResultDTO":{"type":"object","properties":{"from":{"type":"string","format":"date-time"},"to":{"type":"string","format":"date-time"},"totalInvited":{"type":"integer","format":"int64"},"totalActivated":{"type":"integer","format":"int64"},"valuation":{"$ref":"#/components/schemas/ValuationType"},"activatedVariationPercent":{"type":"number","format":"double"},"invitedVariationPercent":{"type":"number","format":"double"},"hierarchyId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"characteristic":{"oneOf":[{"$ref":"#/components/schemas/EmployeeCharacteristicValueBoolean"},{"$ref":"#/components/schemas/EmployeeCharacteristicValueDate"},{"$ref":"#/components/schemas/EmployeeCharacteristicValueList"}]},"groupId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"nonEnoughEmployees":{"type":"boolean"}}},"GroupingResultDTOActivationGroupingResultDTO":{"type":"object","properties":{"groupingType":{"$ref":"#/components/schemas/GroupingType"},"noTypes":{"type":"boolean"},"results":{"type":"array","items":{"$ref":"#/components/schemas/ActivationGroupingResultDTO"}}}},"ActivationDateResult":{"type":"object","properties":{"date":{"type":"string","format":"date-time"},"invited":{"type":"integer","format":"int64"},"invitedAcummulated":{"type":"integer","format":"int64"},"activated":{"type":"integer","format":"int64"},"activatedAcumulated":{"type":"integer","format":"int64"}}},"ActivationPeriodResult":{"type":"object","properties":{"from":{"type":"string","format":"date-time"},"to":{"type":"string","format":"date-time"},"totalInvited":{"type":"integer","format":"int64"},"totalActivated":{"type":"integer","format":"int64"},"valuation":{"$ref":"#/components/schemas/ValuationType"},"activatedVariationPercent":{"type":"number","format":"double"},"invitedVariationPercent":{"type":"number","format":"double"},"results":{"type":"array","items":{"$ref":"#/components/schemas/ActivationDateResult"}}}},"EngagementInsightDTO":{"type":"object","properties":{"id":{"type":"string"},"title":{"type":"string"},"description":{"type":"string"},"theme":{"type":"string"},"iconURL":{"type":"string"},"lowRisk":{"type":"integer","format":"int32"},"mediumRisk":{"type":"integer","format":"int32"},"highRisk":{"type":"integer","format":"int32"},"overallCandidates":{"type":"integer","format":"int32"}}},"EngagementInsightsImpactDTO":{"type":"object","properties":{"scoreId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"hierarchyId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"characteristic":{"oneOf":[{"$ref":"#/components/schemas/EmployeeCharacteristicValueBoolean"},{"$ref":"#/components/schemas/EmployeeCharacteristicValueDate"},{"$ref":"#/components/schemas/EmployeeCharacteristicValueList"}]},"groupId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"lowRisk":{"type":"integer","format":"int32"},"mediumRisk":{"type":"integer","format":"int32"},"highRisk":{"type":"integer","format":"int32"},"factors":{"type":"array","items":{"$ref":"#/components/schemas/EngagementInsightsImpactFactorDTO"},"uniqueItems":true},"children":{"type":"array","items":{},"uniqueItems":true}}},"EngagementInsightsImpactFactorDTO":{"type":"object","properties":{"factorId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"lowRisk":{"type":"integer","format":"int32"},"mediumRisk":{"type":"integer","format":"int32"},"highRisk":{"type":"integer","format":"int32"}}},"AIActionRecomendationDTO":{"type":"object","properties":{"title":{"type":"string"},"description":{"type":"string"}}},"ScoresAIResumeWithActionsDTO":{"type":"object","properties":{"text":{"type":"string"},"actions":{"type":"array","items":{"$ref":"#/components/schemas/AIActionRecomendationDTO"}}}},"CommentsSortOrder":{"type":"string","description":"Comments sort order options","enum":["AGREE","DISAGREE","INAPPROPRIATE","POPULARITY","RECENT","LAST_UPDATED","STARRED","REFEREED"]},"CommentsDTO":{"type":"object","properties":{"from":{"type":"integer","format":"int32"},"to":{"type":"integer","format":"int64"},"total":{"type":"integer","format":"int64"},"result":{"$ref":"#/components/schemas/BaseCommentDTO"},"comments":{"type":"array","items":{"$ref":"#/components/schemas/BaseCommentDTO"}}}},"ManagerRankingDTO":{"type":"object","properties":{"userId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"score":{"type":"integer","format":"int32"},"activityTypes":{"type":"object","additionalProperties":{"type":"integer","format":"int32"}},"participationPercent":{"type":"number","format":"double"},"engagementScore":{"type":"number","format":"double"},"engagementScores":{"type":"object","additionalProperties":{"type":"number","format":"double"}},"firstResponseTime":{"type":"integer","format":"int64"},"firstResponseTimes":{"type":"object","additionalProperties":{"type":"integer","format":"int64"}},"overallResponseTime":{"type":"integer","format":"int64"},"overallResponseTimes":{"type":"object","additionalProperties":{"type":"integer","format":"int64"}}}},"ManagerRankingResultDTO":{"type":"object","properties":{"grouping":{"$ref":"#/components/schemas/DateGroupingTypes"},"periodResults":{"type":"array","items":{"$ref":"#/components/schemas/ManagerRankingDTO"}},"results":{"type":"object","additionalProperties":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/ManagerRankingDTO"}}}}},"PaginableGenericResultListQuestionDTO":{"type":"object","properties":{"from":{"type":"integer","format":"int32"},"to":{"type":"integer","format":"int64"},"total":{"type":"integer","format":"int64"},"result":{"type":"array","items":{"$ref":"#/components/schemas/QuestionDTO"}}}},"PersonProfileDTO":{"type":"object","properties":{"email":{"type":"string"},"name":{"type":"string"},"profileImagePath":{"type":"string"},"role":{"type":"string","enum":["ADVISOR","ADMIN","RESPONSIBLE","PUBLIC","MANAGER","EMPLOYEE"]},"managedHierarchyIds":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true}}},"PaginableGenericListResultPersonDTO":{"type":"object","properties":{"from":{"type":"integer","format":"int32"},"to":{"type":"integer","format":"int32"},"total":{"type":"integer","format":"int32"},"noContent":{"type":"boolean"},"results":{"type":"array","items":{"$ref":"#/components/schemas/PersonDTO"}}}},"UserMeDTO":{"type":"object","properties":{"date":{"type":"string","format":"date-time"}}},"PaginableGenericResultListCompanyDTO":{"type":"object","properties":{"from":{"type":"integer","format":"int32"},"to":{"type":"integer","format":"int64"},"total":{"type":"integer","format":"int64"},"result":{"type":"array","items":{"$ref":"#/components/schemas/CompanyDTO"}}}},"AbstractInsightDTO":{"type":"object","properties":{"id":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"contextId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"family":{"type":"string","enum":["SCORE"]},"type":{"$ref":"#/components/schemas/InsightType"},"date":{"type":"string","format":"date-time"},"hierarchyId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"characteristic":{"oneOf":[{"$ref":"#/components/schemas/EmployeeCharacteristicValueBoolean"},{"$ref":"#/components/schemas/EmployeeCharacteristicValueDate"},{"$ref":"#/components/schemas/EmployeeCharacteristicValueList"}]},"positive":{"type":"boolean"}}},"InsightType":{"type":"string","description":"Type of insight for the analysis of score results","enum":["OUTLIERS","HI_IMPACT","ENPS_IMPACT","VARIATION"]},"PaginableGenericResultListAbstractInsightDTO":{"type":"object","properties":{"from":{"type":"integer","format":"int32"},"to":{"type":"integer","format":"int64"},"total":{"type":"integer","format":"int64"},"result":{"type":"array","items":{"$ref":"#/components/schemas/AbstractInsightDTO"}}}},"HPTokenDTO":{"type":"object","properties":{"token":{"type":"string"}}},"PaginableGenericResultListSurveyFeedbackCommentDTO":{"type":"object","properties":{"from":{"type":"integer","format":"int32"},"to":{"type":"integer","format":"int64"},"total":{"type":"integer","format":"int64"},"result":{"type":"array","items":{"$ref":"#/components/schemas/SurveyFeedbackCommentDTO"}}}},"PaginableGenericResultListScoreFeedbackCommentDTO":{"type":"object","properties":{"from":{"type":"integer","format":"int32"},"to":{"type":"integer","format":"int64"},"total":{"type":"integer","format":"int64"},"result":{"type":"array","items":{"$ref":"#/components/schemas/ScoreFeedbackCommentDTO"}}}},"PaginableGenericResultListENPSFeedbackCommentDTO":{"type":"object","properties":{"from":{"type":"integer","format":"int32"},"to":{"type":"integer","format":"int64"},"total":{"type":"integer","format":"int64"},"result":{"type":"array","items":{"$ref":"#/components/schemas/ENPSFeedbackCommentDTO"}}}},"FeedbackArchivedStatus":{"type":"string","description":"FeedbackArchivedStatus.","enum":["ANY","ACTIVE","ARCHIVED"]},"PaginableGenericResultListClassificationFeedbackDTO":{"type":"object","properties":{"from":{"type":"integer","format":"int32"},"to":{"type":"integer","format":"int64"},"total":{"type":"integer","format":"int64"},"result":{"type":"array","items":{"$ref":"#/components/schemas/ClassificationFeedbackDTO"}}}},"PaginableGenericListResultAnnouncementFeedbackCommentDTO":{"type":"object","properties":{"from":{"type":"integer","format":"int32"},"to":{"type":"integer","format":"int32"},"total":{"type":"integer","format":"int32"},"noContent":{"type":"boolean"},"results":{"type":"array","items":{"$ref":"#/components/schemas/AnnouncementFeedbackCommentDTO"}}}},"ENPSConfigurationDTO":{"type":"object","properties":{"questionId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"enabled":{"type":"boolean"},"fullPeriod":{"type":"boolean"},"title":{"$ref":"#/components/schemas/MultiLanguage"},"description":{"$ref":"#/components/schemas/MultiLanguage"},"shortDescription":{"$ref":"#/components/schemas/MultiLanguage"},"reason":{"$ref":"#/components/schemas/MultiLanguage"},"reasonTitle":{"$ref":"#/components/schemas/MultiLanguage"},"reasonDescription":{"$ref":"#/components/schemas/MultiLanguage"},"first":{"$ref":"#/components/schemas/QuestionValue"},"last":{"$ref":"#/components/schemas/QuestionValue"},"measuringNow":{"type":"boolean"},"lastMeasure":{"type":"string","format":"date-time"},"nextMeasure":{"type":"string","format":"date-time"},"numberOfMeasures":{"type":"integer","format":"int32"},"currentPeriodHasVotes":{"type":"boolean"}}},"ENPSCurrentStatus":{"type":"object","properties":{"hasSchedule":{"type":"boolean"},"measuringNow":{"type":"boolean"},"hasVotes":{"type":"boolean"},"measureFrom":{"type":"string","format":"date-time"},"measureTo":{"type":"string","format":"date-time"}}},"PaginableGenericListResultConversationHeaderDTO":{"type":"object","properties":{"from":{"type":"integer","format":"int32"},"to":{"type":"integer","format":"int32"},"total":{"type":"integer","format":"int32"},"noContent":{"type":"boolean"},"results":{"type":"array","items":{"$ref":"#/components/schemas/ConversationHeaderDTO"}}}},"ConversationPendingDTO":{"type":"object","properties":{"pending":{"type":"integer","format":"int32"}}},"CheckDomainResponse":{"type":"object","properties":{"domain":{"type":"string"},"status":{"type":"string","enum":["VALID","RESTRICTED","INVALID","IN_USE"]}}},"CheckMailResponse":{"type":"object","properties":{"valid":{"type":"boolean"},"userType":{"$ref":"#/components/schemas/UserType"},"allowedLoginMethods":{"type":"array","items":{"type":"string","enum":["USER_PASSWORD","USER_ACCESS_LINK","GOOGLE_AUTH","MICROSOFT_AUTH","HP_AUTH","SSO_SAML2","SSO_OIDC"]},"uniqueItems":true},"ssoRedirectUrl":{"type":"string"},"ssoMandatory":{"type":"boolean"}}},"AnonymityDTO":{"type":"object","properties":{"valid":{"type":"boolean"},"requiredEmployees":{"type":"integer","format":"int32"}}},"AnnouncementOrder":{"type":"string","description":"Type announcement order","enum":["RECENT","OLDER","MOST_COMMENTED","MOST_LIKED","MOST_VIEWED"]},"PaginableGenericListResultAnnouncementExternalDTO":{"type":"object","properties":{"from":{"type":"integer","format":"int32"},"to":{"type":"integer","format":"int32"},"total":{"type":"integer","format":"int32"},"noContent":{"type":"boolean"},"results":{"type":"array","items":{"$ref":"#/components/schemas/AnnouncementExternalDTO"}}}},"CompanyRole":{"type":"object","properties":{"companyId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"role":{"type":"string","enum":["ADVISOR","ADMIN","RESPONSIBLE","PUBLIC","MANAGER","EMPLOYEE"]}}},"PersonAdvisorDTO":{"type":"object","properties":{"id":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"companyId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"name":{"type":"string"},"profileImagePath":{"type":"string"},"addedBy":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"sourceType":{"type":"string","enum":["REGISTRATION","USER","SELF","API","API_INTERNAL","SSO"]},"role":{"type":"string","enum":["ADVISOR","ADMIN","RESPONSIBLE","PUBLIC","MANAGER","EMPLOYEE"]},"managedHierarchyIds":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true},"hierarchyId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"characteristics":{"type":"array","items":{"oneOf":[{"$ref":"#/components/schemas/EmployeeCharacteristicValueBoolean"},{"$ref":"#/components/schemas/EmployeeCharacteristicValueDate"},{"$ref":"#/components/schemas/EmployeeCharacteristicValueList"}]},"uniqueItems":true},"groups":{"type":"array","items":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"uniqueItems":true},"blocked":{"type":"boolean"},"debug":{"type":"boolean"},"language":{"type":"string"},"activated":{"type":"boolean"},"deleted":{"type":"boolean"},"turnoverDate":{"type":"string","format":"date-time"},"turnoverType":{"type":"string","enum":["VOLUNTARY","INVOLUNTARY","OTHER"]},"addedOn":{"type":"string","format":"date-time"},"deletedOn":{"type":"string","format":"date-time"},"email":{"type":"string"},"externalId":{"type":"string"},"mailStatus":{"type":"string","enum":["SENT","DELIVERED","OPEN","DEFERRAL","HARDBOUNCE","SOFTBOUNCE","SPAM","UNSUB","REJECTED","DELAYED","OTHER"]},"appActivationToken":{"type":"string"},"mailNotificationSettings":{"type":"array","items":{"$ref":"#/components/schemas/UserNotificationSetting"},"uniqueItems":true},"pushNotificationSettings":{"type":"array","items":{"$ref":"#/components/schemas/UserNotificationSetting"},"uniqueItems":true},"roles":{"type":"array","items":{"$ref":"#/components/schemas/CompanyRole"}}}},"ActivityType":{"type":"string","description":"Managager activity type in the platform.","enum":["QUESTION_PUBLISHED","ANNOUNCEMENT_PUBLISHED","ANNOUNCEMENT_REPLY","CONVERSATION_PARTICIPATED","COMMENT_SIGNED","REPLY_SIGNED","RECOGNITION_PERFORMED"]},"ManagerActivityDTO":{"type":"object","properties":{"contextId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"userId":{"type":"string","example":"64f8a0e2d5b7c9a1e3f4a5b6"},"created":{"type":"string","format":"date-time"},"updated":{"type":"string","format":"date-time"},"activityDate":{"type":"string","format":"date-time"},"activityType":{"$ref":"#/components/schemas/ActivityType"}}},"PaginableGenericResultListManagerActivityDTO":{"type":"object","properties":{"from":{"type":"integer","format":"int32"},"to":{"type":"integer","format":"int64"},"total":{"type":"integer","format":"int64"},"result":{"type":"array","items":{"$ref":"#/components/schemas/ManagerActivityDTO"}}}},"CsrfToken":{"type":"object","properties":{"parameterName":{"type":"string"},"headerName":{"type":"string"},"token":{"type":"string"}}},"TimesheetDeleteRequestDTO":{"type":"object","description":"Timesheet delete data","properties":{"deleteReason":{"type":"string","description":"Reason for deleting this timesheet record","example":"Duplicate record created by mistake","minLength":1}},"required":["deleteReason"]}},"securitySchemes":{"companyAPISessionId":{"type":"apiKey","description":"SessionId","name":"SessionId","in":"header"},"happyforceAPIKey":{"type":"apiKey","description":"API Key for Happyforce API","name":"happyforceAPIKey","in":"header"},"employeeAPISessionToken":{"type":"apiKey","description":"sessionToken","name":"sessionToken","in":"header"}}}}