2.0info: 0.2.0 ats_document_process x-senior-domain: hcm x-senior-domain-path: hcm x-senior-service-path: ats_document_process contact: name: Senior X Platform url: https://dev.senior.com.br email: seniorx-dev@senior.com.brhost: platform.senior.com.br /t/senior.com.br/bridge/1.0/rest/hcmsecurityDefinitions: APIKeyHeader: type: apiKey in: header name: Authorizationsecurity: – APIKeyHeader: [] – application/json – application/jsonpaths: /ats_document_process/queries/healthcheck: post: description: HealthCheck Plataforma tags: – Queries x-senior-visibility: PRIVATE responses: 200: description: Ok schema: type: object required: – status – checks properties: status: type: string allOf: – #/definitions/heathcheckDTO description: Status de retorno checks: type: object allOf: – #/definitions/checkDTO description: Checks executados 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: HealthCheck Plataforma tags: – Queries x-senior-visibility: PRIVATE responses: 200: description: Ok schema: type: object required: – status – checks properties: status: type: string allOf: – #/definitions/heathcheckDTO description: Status de retorno checks: type: object allOf: – #/definitions/checkDTO description: Checks executados 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /ats_document_process/queries/getCvResult: post: description: Envio da URL do currículo para leitura e extração dos dados tags: – Queries x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – requestId properties: requestId: type: string description: Identificador da requisição de leitura a ter seu resultado recuperado responses: 200: description: Ok schema: type: object required: – cvResult properties: cvResult: type: string description: Conteúdo do arquivo de currículo lido 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Envio da URL do currículo para leitura e extração dos dados tags: – Queries x-senior-visibility: PRIVATE parameters: – name: requestId description: Identificador da requisição de leitura a ter seu resultado recuperado in: query required: true type: string responses: 200: description: Ok schema: type: object required: – cvResult properties: cvResult: type: string description: Conteúdo do arquivo de currículo lido 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /ats_document_process/queries/getMetadata: post: description: Default getMetadata query. Every service must handle this command and return metadata in the format requested. tags: – Queries x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object properties: metadataFormat: type: string description: responses: 200: description: Ok schema: type: object required: – metadata properties: metadata: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Default getMetadata query. Every service must handle this command and return metadata in the format requested. tags: – Queries x-senior-visibility: PRIVATE parameters: – name: metadataFormat description: in: query type: string responses: 200: description: Ok schema: type: object required: – metadata properties: metadata: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /ats_document_process/queries/getDependencies: post: description: Returns a list with all dependencies from this service, along with their respective versions tags: – Queries x-senior-visibility: PRIVATE responses: 200: description: Ok schema: type: object required: – dependencies properties: dependencies: type: array items: type: object allOf: – #/definitions/dependency minimum: 1 description: List with this service dependencies 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Returns a list with all dependencies from this service, along with their respective versions tags: – Queries x-senior-visibility: PRIVATE responses: 200: description: Ok schema: type: object required: – dependencies properties: dependencies: type: array items: type: object allOf: – #/definitions/dependency minimum: 1 description: List with this service dependencies 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /ats_document_process/actions/sendCvReading: post: description: Envio da URL do currículo para leitura e extração dos dados tags: – Actions x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – requestSource – applicationType – documentType properties: cvUrl: type: string description: URL do arquivo do currículo a ser processado fileId: type: string description: Identificador de arquivo do blobservice type: string description: Versão do arquivo no blobservice requestSource: type: string allOf: – #/definitions/requestSource description: Origem da chamada applicationType: type: string allOf: – #/definitions/applicationType description: Tipo do processamento a ser utilizado na leitura documentType: type: string allOf: – #/definitions/documentType description: Tipo de documento a ser lido template: type: string description: Template companyLocale: type: string description: Localização da empresa responses: 200: description: Ok schema: type: object required: – requestId properties: requestId: type: string description: Identificador da requisição 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /ats_document_process/signals/receiveCvReadResult: post: description: Primitiva que processa o recebimento do arquivo tags: – Signals parameters: – name: input in: body required: true schema: type: object required: – jobId – status properties: jobId: type: string description: Id da requisição de processamento result: type: string description: Conteúdo do arquivo processado errorMessage: type: string description: Error message caso tenha ocorrido algum erro status: type: string allOf: – #/definitions/resultType description: Status do resultado do processamento tenant: type: string description: Tenant origem da chamada responses: 202: description: Accepted default: description: Error response schema: #/definitions/genericError /ats_document_process/events/cvReadingProcessed: post: description: Evento contendo o resultado da leitura do arquivo x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – requestId – result – requestUser – status properties: requestId: type: string description: Id da requisição de processamento result: type: string description: Conteúdo do arquivo processado requestUser: type: string description: Usuario da requisição status: type: string allOf: – #/definitions/resultType description: Status do resultado do processamento responses: 200: description: OK default: description: Error response schema: #/definitions/genericErrordefinitions: heathcheckDTO: type: string enum: – UP – DOWN description: Status do healthcheck: * `UP` – Saudável * `DOWN` – Ruim requestSource: type: string enum: – GRS – PORTAL – UNSUPPORTED description: Enumeração contendo as origens das requisições: * `GRS` – Gestão de Recrutamento e Seleção * `PORTAL` – Portal de Talentos * `UNSUPPORTED` – Não suportado applicationType: type: string enum: – GENAI – OCR – HYBRID description: Enumeração contendo os tipos de processamento: * `GENAI` – IA Generativa * `OCR` – Reconhecimento Óptico de Caracteres * `HYBRID` – Combinação entre OCR open-source (Tesseract) + IA generativa documentType: type: string enum: – CV description: Enumeração contendo os tipos de documentos: * `CV` – Currículo resultType: type: string enum: – SUCCESS – ERROR description: Enumeração contendo os tipos de resultado do processamento: * `SUCCESS` – Processamento realizado com sucesso * `ERROR` – Processamento realizado com falha userNotificationKind: type: string enum: – Operational – Management – News description: User notification kind.: * `Operational` – Operational * `Management` – Management * `News` – News userNotificationPriority: type: string enum: – Error – Alert – None description: User notification priority.: * `Error` – Error * `Alert` – Alert * `None` – None eventEmailFormat: type: string enum: – HTML – PLAIN_TEXT description: Format of the email: * `HTML` – Html * `PLAIN_TEXT` – Plain Text healthCheckStatus: description: type: object required: – status – message properties: status: type: string description: Status do healthcheck message: type: string description: Mensagem de retorno checkDTO: description: Retorno status usados de retorno type: object required: – name – status properties: name: type: string description: Nome do status status: type: string allOf: – #/definitions/heathcheckDTO description: Status notifyUserEventPayload: description: Represents a regular user event notification payload discriminator: _discriminator type: object required: – notificationKind – notificationPriority – notificationSubject – notificationContent – sourceDomain – sourceService – destinationUser – _discriminator properties: notificationClass: type: string description: Class of notification notificationOrigin: type: string description: Origin of notification. Free text. Optional. notificationKind: type: string allOf: – #/definitions/userNotificationKind description: Notification kind. notificationPriority: type: string allOf: – #/definitions/userNotificationPriority description: Notification priority. notificationSubject: type: string description: Notification subject. notificationContent: type: string description: Notification content. sourceDomain: type: string description: Domain that generates the notification. sourceService: type: string description: Service that generates the notification. destinationUser: type: string description: Username of the destination user. link: type: string description: Notification link _discriminator: type: string description: emailNotifyUserEventPayload: description: Represents an email notification payload allOf: – #/definitions/notifyUserEventPayload – type: object required: – from properties: from: type: string description: Email sender address sendTo: type: array items: type: string description: Additional recipients to send the email to format: type: string allOf: – #/definitions/eventEmailFormat description: Email format pushNotifyUserEventPayload: description: Represents a push notification payload allOf: – #/definitions/notifyUserEventPayload – type: object required: – applicationId properties: applicationId: type: string description: Apple/Google application id blobReference: description: Default blob reference type. Every service defines its own. type: object required: – targetObjectId properties: domainName: type: string description: The domain the blob belongs to. serviceName: type: string description: The service the blob belongs to. targetObjectId: type: string description: The basic id of the blob. targetCopyId: type: string description: The id of the blob copy. basicErrorPayload: description: Default error payload type. Every service defines its own. type: object properties: message: type: string description: The user-facing error message, if any. errorCode: type: string description: The program-accessible (and service-specific) error code. dependency: description: Represents a service dependency type: object required: – domain – service – version properties: domain: type: string description: Domain of the dependency service service: type: string description: Name of the dependency service type: string description: Version of the dependency service genericError: properties: message: type: string description: Messaging describing the error. reason: type: string enum: – BAD_REQUEST – UNAUTHORIZED – PAYMENT_REQUIRED – FORBIDDEN – OBJECT_NOT_FOUND – REQUEST_TIMEOUT – GONE – UNPROCESSABLE – INTERNAL_ERROR – NOT_IMPLEMENTED – SERVICE_UNAVAILABLE – INSUFFICIENT_STORAGE description: A symbolic code identifying the category of the reason of the error: * `BAD_REQUEST` – Bad Request * `UNAUTHORIZED` – Unauthorized * `PAYMENT_REQUIRED` – Payment Required * `OBJECT_NOT_FOUND` – Object Not Found * `REQUEST_TIMEOUT` – Request Timeout * `GONE` – Gone * `UNPROCESSABLE` – Unprocessable * `INTERNAL_ERROR` – Internal Error * `NOT_IMPLEMENTED` – Not Implemented * `SERVICE_UNAVAILABLE` – Service Unavailable * `INSUFFICIENT_STORAGE` – Insufficient Storage