• Início
    • A Plataforma
    • Para customizar
      • Visão geral
      • Tutoriais
      • Github.com
      • Guia de contribuição
      • Tabela de compatibilidade
    • Para desenvolver
      • Visão geral
      • API – Guia de Estilo
      • UX – Guia de estilo
    • Para administrar
      • Documentação
  • APIs
  • Documentação
    • APIs Senior X
    • Tutoriais
  • Fórum
  • Community
  • Entrar
  • Cadastrar-se
  • Início
    • A Plataforma
    • Para customizar
      • Visão geral
      • Tutoriais
      • Github.com
      • Guia de contribuição
      • Tabela de compatibilidade
    • Para desenvolver
      • Visão geral
      • API – Guia de Estilo
      • UX – Guia de estilo
    • Para administrar
      • Documentação
  • APIs
  • Documentação
    • APIs Senior X
    • Tutoriais
  • Fórum
  • Community
  • Entrar
  • Cadastrar-se
home/APIs Privadas/Gestão de Pessoas (hcm)/Cadastros Gerais (general_register)
Mais pesquisados:Customização, Tutorial, Documentação

Cadastros Gerais (general_register)

1450 views 1 28/06/2019 Atualizado em 13/08/2024 integrador

2.0info: 4.21.2 Cadastros Gerais description: Serviço responsável pelos CRUD de cadastros gerais utilizados pelo HCM x-senior-domain: hcm x-senior-domain-path: hcm x-senior-service-path: general_register 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: /general_register/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 /general_register/queries/migrate: post: description: Realiza a migração da base de dados tags: – Queries x-senior-visibility: PRIVATE responses: 200: description: Ok schema: type: object required: – status – errorMessage properties: status: type: boolean description: Status da migração errorMessage: type: string description: Mensagem de erro da migração 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Realiza a migração da base de dados tags: – Queries x-senior-visibility: PRIVATE responses: 200: description: Ok schema: type: object required: – status – errorMessage properties: status: type: boolean description: Status da migração errorMessage: type: string description: Mensagem de erro da migração 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/enumQuery: post: description: Retorna os itens das enumerações traduzidos tags: – Queries x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – names properties: names: type: array items: type: string minimum: 1 description: Nomes das enumerações responses: 200: description: Ok schema: type: object required: – results properties: results: type: array items: type: object allOf: – #/definitions/enumInformationData minimum: 1 description: Lista com as enumerações traduzidas 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Retorna os itens das enumerações traduzidos tags: – Queries x-senior-visibility: PRIVATE parameters: – name: names description: Nomes das enumerações in: query required: true type: array items: type: string minimum: 1 responses: 200: description: Ok schema: type: object required: – results properties: results: type: array items: type: object allOf: – #/definitions/enumInformationData minimum: 1 description: Lista com as enumerações traduzidas 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/lookupEmployee: post: description: Retorna as informações do colaborador tags: – Queries x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – page properties: company: type: object allOf: – #/definitions/company description: Empresa employeeType: type: string allOf: – #/definitions/employeeType description: Tipo do colaborador registernumber: type: integer format: int64 description: Código do colaborador valueSearch: type: string description: Nome ou código do colaborador page: type: object allOf: – #/definitions/pagination description: Paginação da busca responses: 200: description: Ok schema: type: object required: – result properties: result: type: object allOf: – #/definitions/pagedEmployeeResultData description: Retorno da busca de colaboradores 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/registrationCodeQuery: post: description: Retorna um código gerado para os cadastros tags: – Queries x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – entityName properties: entityName: type: string description: Nome da entidade responses: 200: description: Ok schema: type: object required: – code properties: code: type: integer format: int64 description: Retorno de um novo código 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Retorna um código gerado para os cadastros tags: – Queries x-senior-visibility: PRIVATE parameters: – name: entityName description: Nome da entidade in: query required: true type: string responses: 200: description: Ok schema: type: object required: – code properties: code: type: integer format: int64 description: Retorno de um novo código 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/autocompleteReportGroupQuery: post: description: Autocomplete groupos de relatorios. tags: – Queries x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object properties: searchText: type: string description: Texto para consulta default: responses: 200: description: Ok schema: type: object required: – records properties: records: type: array items: type: object allOf: – #/definitions/autocompleteFilter minimum: 1 description: Retorno do endpoint 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Autocomplete groupos de relatorios. tags: – Queries x-senior-visibility: PRIVATE parameters: – name: searchText description: Texto para consulta in: query type: string responses: 200: description: Ok schema: type: object required: – records properties: records: type: array items: type: object allOf: – #/definitions/autocompleteFilter minimum: 1 description: Retorno do endpoint 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/pisNumberPersonByAttendantQuery: post: description: Retorna o número do PIS da pessoa através do atendente médico tags: – Queries x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – attendantId properties: attendantId: type: string description: Id do atendente responses: 200: description: Ok schema: type: object required: – result properties: result: type: string description: Número do pis da pessoa ligada ao atendente 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Retorna o número do PIS da pessoa através do atendente médico tags: – Queries x-senior-visibility: PRIVATE parameters: – name: attendantId description: Id do atendente in: query required: true type: string responses: 200: description: Ok schema: type: object required: – result properties: result: type: string description: Número do pis da pessoa ligada ao atendente 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/miscellaneousIndicationList: post: description: Retorna os assinalamentos da empresa e proprietária tags: – Queries x-senior-visibility: PRIVATE responses: 200: description: Ok schema: type: object required: – result properties: result: type: object allOf: – #/definitions/miscellaneousIndicationData description: Dados dos assinalamentos da empresa 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Retorna os assinalamentos da empresa e proprietária tags: – Queries x-senior-visibility: PRIVATE responses: 200: description: Ok schema: type: object required: – result properties: result: type: object allOf: – #/definitions/miscellaneousIndicationData description: Dados dos assinalamentos da empresa 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/listHierarchyByStructure: post: description: Retorna as hierarquias de uma estrutura organizacional tags: – Queries x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – structureId properties: structureId: type: string description: Id da estrutura period: type: object allOf: – #/definitions/period description: Período responses: 200: description: Ok schema: type: object required: – periods – nodes properties: periods: type: array items: type: object allOf: – #/definitions/period minimum: 1 description: Períodos disponíveis para a estrutura nodes: type: array items: type: object allOf: – #/definitions/organizationalChartDepartmentHierarchyData minimum: 1 description: Dados da hierarquia 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/allowEnableUserMask: post: description: Retorna true ou false para habilitar ou desabilitar o campo useMask tags: – Queries x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – organizationalChartStructureId properties: organizationalChartStructureId: type: string description: Id da estrutura do organograma responses: 200: description: Ok schema: type: object required: – allowUseMask properties: allowUseMask: type: boolean description: Valor booleano indicando se deve habilitar ou não o campo useMask 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Retorna true ou false para habilitar ou desabilitar o campo useMask tags: – Queries x-senior-visibility: PRIVATE parameters: – name: organizationalChartStructureId description: Id da estrutura do organograma in: query required: true type: string responses: 200: description: Ok schema: type: object required: – allowUseMask properties: allowUseMask: type: boolean description: Valor booleano indicando se deve habilitar ou não o campo useMask 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/getMiscellaneousIndicationNovLoc: post: description: Retorna configuração do new_structure_local (novLoc) tags: – Queries x-senior-visibility: PRIVATE responses: 200: description: Ok schema: type: object required: – newStructureLocal properties: newStructureLocal: type: boolean description: Valor booleano indicando se o campo NovLoc esta marcado como true ou false 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Retorna configuração do new_structure_local (novLoc) tags: – Queries x-senior-visibility: PRIVATE responses: 200: description: Ok schema: type: object required: – newStructureLocal properties: newStructureLocal: type: boolean description: Valor booleano indicando se o campo NovLoc esta marcado como true ou false 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/existHistoryForChartStructure: post: description: Verifica se existe historico para estrutura para algum local tags: – Queries x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – organizationalChartStructureId properties: organizationalChartStructureId: type: string description: Id da estrutura do organograma responses: 200: description: Ok schema: type: object required: – hasHistoryForChartStructure properties: hasHistoryForChartStructure: type: boolean description: Valor booleano indicado se existe ou não historico de locais 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Verifica se existe historico para estrutura para algum local tags: – Queries x-senior-visibility: PRIVATE parameters: – name: organizationalChartStructureId description: Id da estrutura do organograma in: query required: true type: string responses: 200: description: Ok schema: type: object required: – hasHistoryForChartStructure properties: hasHistoryForChartStructure: type: boolean description: Valor booleano indicado se existe ou não historico de locais 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/autocompleteDismissalReason: post: description: Autocomplete específico para situações de causa de demissão tags: – Queries x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – valueSearch properties: valueSearch: type: string description: Descrição para pesquisa das causas de demissão referenceDate: type: string format: date description: Data de referência da pesquisa responses: 200: description: Ok schema: type: object required: – result properties: result: type: array items: type: object allOf: – #/definitions/autocompleteResult minimum: 1 description: Retorno de situações demento 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Autocomplete específico para situações de causa de demissão tags: – Queries x-senior-visibility: PRIVATE parameters: – name: valueSearch description: Descrição para pesquisa das causas de demissão in: query required: true type: string – name: referenceDate description: Data de referência da pesquisa in: query type: string format: date responses: 200: description: Ok schema: type: object required: – result properties: result: type: array items: type: object allOf: – #/definitions/autocompleteResult minimum: 1 description: Retorno de situações demento 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/getTransportationVoucherScaleItem: post: description: Busca um item de escala de vale transporte a partir do seu ID tags: – Queries x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – id properties: id: type: string description: Id da entidade responses: 200: description: Ok schema: type: object required: – result properties: result: type: object allOf: – #/definitions/transportationVoucherScaleItem description: Item de escala de vale transporte 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Busca um item de escala de vale transporte a partir do seu ID tags: – Queries x-senior-visibility: PRIVATE parameters: – name: id description: Id da entidade in: query required: true type: string responses: 200: description: Ok schema: type: object required: – result properties: result: type: object allOf: – #/definitions/transportationVoucherScaleItem description: Item de escala de vale transporte 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/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 /general_register/queries/exportReligion: post: description: tags: – Queries x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/exportConfig description: responses: 200: description: Ok schema: type: object required: – exportJobId properties: exportJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/exportBank: post: description: tags: – Queries x-senior-visibility: PUBLIC parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/exportConfig description: responses: 200: description: Ok schema: type: object required: – exportJobId properties: exportJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/exportCountry: post: description: tags: – Queries x-senior-visibility: PUBLIC parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/exportConfig description: responses: 200: description: Ok schema: type: object required: – exportJobId properties: exportJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/exportCity: post: description: tags: – Queries x-senior-visibility: PUBLIC parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/exportConfig description: responses: 200: description: Ok schema: type: object required: – exportJobId properties: exportJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/exportAnnotationtype: post: description: tags: – Queries x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/exportConfig description: responses: 200: description: Ok schema: type: object required: – exportJobId properties: exportJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/exportCaste: post: description: tags: – Queries x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/exportConfig description: responses: 200: description: Ok schema: type: object required: – exportJobId properties: exportJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/exportAddress: post: description: tags: – Queries x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/exportConfig description: responses: 200: description: Ok schema: type: object required: – exportJobId properties: exportJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/exportAdministrativeregion: post: description: tags: – Queries x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/exportConfig description: responses: 200: description: Ok schema: type: object required: – exportJobId properties: exportJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/exportEmploymentRelationship: post: description: tags: – Queries x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/exportConfig description: responses: 200: description: Ok schema: type: object required: – exportJobId properties: exportJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/exportStructure: post: description: tags: – Queries x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/exportConfig description: responses: 200: description: Ok schema: type: object required: – exportJobId properties: exportJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/exportCurrency: post: description: tags: – Queries x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/exportConfig description: responses: 200: description: Ok schema: type: object required: – exportJobId properties: exportJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/exportFinancialIndex: post: description: tags: – Queries x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/exportConfig description: responses: 200: description: Ok schema: type: object required: – exportJobId properties: exportJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/exportAttendant: post: description: tags: – Queries x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/exportConfig description: responses: 200: description: Ok schema: type: object required: – exportJobId properties: exportJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/exportEmployee: post: description: tags: – Queries x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/exportConfig description: responses: 200: description: Ok schema: type: object required: – exportJobId properties: exportJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/exportCompany: post: description: tags: – Queries x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/exportConfig description: responses: 200: description: Ok schema: type: object required: – exportJobId properties: exportJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/exportNis: post: description: tags: – Queries x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/exportConfig description: responses: 200: description: Ok schema: type: object required: – exportJobId properties: exportJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/exportPersonNis: post: description: tags: – Queries x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/exportConfig description: responses: 200: description: Ok schema: type: object required: – exportJobId properties: exportJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/exportPerson: post: description: tags: – Queries x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/exportConfig description: responses: 200: description: Ok schema: type: object required: – exportJobId properties: exportJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/exportDocument: post: description: tags: – Queries x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/exportConfig description: responses: 200: description: Ok schema: type: object required: – exportJobId properties: exportJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/exportProfessionalBoardAcronym: post: description: tags: – Queries x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/exportConfig description: responses: 200: description: Ok schema: type: object required: – exportJobId properties: exportJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/exportProfessionalcouncil: post: description: tags: – Queries x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/exportConfig description: responses: 200: description: Ok schema: type: object required: – exportJobId properties: exportJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/exportApportionment: post: description: tags: – Queries x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/exportConfig description: responses: 200: description: Ok schema: type: object required: – exportJobId properties: exportJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/exportOpinion: post: description: tags: – Queries x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/exportConfig description: responses: 200: description: Ok schema: type: object required: – exportJobId properties: exportJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/exportEducationdegree: post: description: tags: – Queries x-senior-visibility: PUBLIC parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/exportConfig description: responses: 200: description: Ok schema: type: object required: – exportJobId properties: exportJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/exportKnowledgearea: post: description: tags: – Queries x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/exportConfig description: responses: 200: description: Ok schema: type: object required: – exportJobId properties: exportJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/exportNationality: post: description: tags: – Queries x-senior-visibility: PUBLIC parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/exportConfig description: responses: 200: description: Ok schema: type: object required: – exportJobId properties: exportJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/exportTimetrackingsituation: post: description: tags: – Queries x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/exportConfig description: responses: 200: description: Ok schema: type: object required: – exportJobId properties: exportJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/exportDisability: post: description: tags: – Queries x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/exportConfig description: responses: 200: description: Ok schema: type: object required: – exportJobId properties: exportJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/exportDocumentType: post: description: tags: – Queries x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/exportConfig description: responses: 200: description: Ok schema: type: object required: – exportJobId properties: exportJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/exportIssActivity: post: description: tags: – Queries x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/exportConfig description: responses: 200: description: Ok schema: type: object required: – exportJobId properties: exportJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/exportResignationReason: post: description: tags: – Queries x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/exportConfig description: responses: 200: description: Ok schema: type: object required: – exportJobId properties: exportJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/exportDismissalMovimentation: post: description: tags: – Queries x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/exportConfig description: responses: 200: description: Ok schema: type: object required: – exportJobId properties: exportJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/exportCidByCnae: post: description: tags: – Queries x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/exportConfig description: responses: 200: description: Ok schema: type: object required: – exportJobId properties: exportJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/exportCompetencyskillproficiencytable: post: description: tags: – Queries x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/exportConfig description: responses: 200: description: Ok schema: type: object required: – exportJobId properties: exportJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/exportExpenseNature: post: description: tags: – Queries x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/exportConfig description: responses: 200: description: Ok schema: type: object required: – exportJobId properties: exportJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/exportIssLimit: post: description: tags: – Queries x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/exportConfig description: responses: 200: description: Ok schema: type: object required: – exportJobId properties: exportJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/exportElectronicAddress: post: description: tags: – Queries x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/exportConfig description: responses: 200: description: Ok schema: type: object required: – exportJobId properties: exportJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/exportDisease: post: description: tags: – Queries x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/exportConfig description: responses: 200: description: Ok schema: type: object required: – exportJobId properties: exportJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/exportSubgroupDisease: post: description: tags: – Queries x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/exportConfig description: responses: 200: description: Ok schema: type: object required: – exportJobId properties: exportJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/exportWorkSchedules: post: description: tags: – Queries x-senior-visibility: PUBLIC parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/exportConfig description: responses: 200: description: Ok schema: type: object required: – exportJobId properties: exportJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/exportLicenseInformation: post: description: tags: – Queries x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/exportConfig description: responses: 200: description: Ok schema: type: object required: – exportJobId properties: exportJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/exportMiscellaneousIndication: post: description: tags: – Queries x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/exportConfig description: responses: 200: description: Ok schema: type: object required: – exportJobId properties: exportJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/exportCompetencytype: post: description: tags: – Queries x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/exportConfig description: responses: 200: description: Ok schema: type: object required: – exportJobId properties: exportJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/exportDismissalReason: post: description: tags: – Queries x-senior-visibility: PUBLIC parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/exportConfig description: responses: 200: description: Ok schema: type: object required: – exportJobId properties: exportJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/exportMovimentationreason: post: description: tags: – Queries x-senior-visibility: PUBLIC parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/exportConfig description: responses: 200: description: Ok schema: type: object required: – exportJobId properties: exportJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/exportOrganizationalChartStructure: post: description: tags: – Queries x-senior-visibility: PUBLIC parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/exportConfig description: responses: 200: description: Ok schema: type: object required: – exportJobId properties: exportJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/exportRevenue: post: description: tags: – Queries x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/exportConfig description: responses: 200: description: Ok schema: type: object required: – exportJobId properties: exportJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/exportHoliday: post: description: tags: – Queries x-senior-visibility: PUBLIC parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/exportConfig description: responses: 200: description: Ok schema: type: object required: – exportJobId properties: exportJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/exportQualification: post: description: tags: – Queries x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/exportConfig description: responses: 200: description: Ok schema: type: object required: – exportJobId properties: exportJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/exportWorkshift: post: description: tags: – Queries x-senior-visibility: PUBLIC parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/exportConfig description: responses: 200: description: Ok schema: type: object required: – exportJobId properties: exportJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/exportWorkshiftGroup: post: description: tags: – Queries x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/exportConfig description: responses: 200: description: Ok schema: type: object required: – exportJobId properties: exportJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/exportWorkshiftSchedule: post: description: tags: – Queries x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/exportConfig description: responses: 200: description: Ok schema: type: object required: – exportJobId properties: exportJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/exportWorkshiftClass: post: description: tags: – Queries x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/exportConfig description: responses: 200: description: Ok schema: type: object required: – exportJobId properties: exportJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/exportAutomaticWorkScheduleSearch: post: description: tags: – Queries x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/exportConfig description: responses: 200: description: Ok schema: type: object required: – exportJobId properties: exportJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/exportMeansOfTransport: post: description: tags: – Queries x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/exportConfig description: responses: 200: description: Ok schema: type: object required: – exportJobId properties: exportJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/exportWorkstationGroupProfile: post: description: tags: – Queries x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/exportConfig description: responses: 200: description: Ok schema: type: object required: – exportJobId properties: exportJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/exportActivityfield: post: description: tags: – Queries x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/exportConfig description: responses: 200: description: Ok schema: type: object required: – exportJobId properties: exportJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/exportOthercompany: post: description: tags: – Queries x-senior-visibility: PUBLIC parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/exportConfig description: responses: 200: description: Ok schema: type: object required: – exportJobId properties: exportJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/exportTransportationVoucherScale: post: description: tags: – Queries x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/exportConfig description: responses: 200: description: Ok schema: type: object required: – exportJobId properties: exportJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/exportLinePrices: post: description: tags: – Queries x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/exportConfig description: responses: 200: description: Ok schema: type: object required: – exportJobId properties: exportJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/exportTransportLine: post: description: tags: – Queries x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/exportConfig description: responses: 200: description: Ok schema: type: object required: – exportJobId properties: exportJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/exportReportGroup: post: description: tags: – Queries x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/exportConfig description: responses: 200: description: Ok schema: type: object required: – exportJobId properties: exportJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/exportReportGroupItem: post: description: tags: – Queries x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/exportConfig description: responses: 200: description: Ok schema: type: object required: – exportJobId properties: exportJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/exportInsurance: post: description: tags: – Queries x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/exportConfig description: responses: 200: description: Ok schema: type: object required: – exportJobId properties: exportJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/exportWagetypeGroup: post: description: tags: – Queries x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/exportConfig description: responses: 200: description: Ok schema: type: object required: – exportJobId properties: exportJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/exportPointEmbarkation: post: description: tags: – Queries x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/exportConfig description: responses: 200: description: Ok schema: type: object required: – exportJobId properties: exportJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/queries/exportDiseaseICD11: post: description: tags: – Queries x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/exportConfig description: responses: 200: description: Ok schema: type: object required: – exportJobId properties: exportJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/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 /general_register/actions/integrationSaveBatch: post: description: Salva um lote de entidades tags: – Actions x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – className – jsonText – serviceName – collectionName – ids properties: className: type: string description: Classe da entidade jsonText: type: string description: Json da entidade serviceName: type: string description: Nome do serviço collectionName: type: string description: Nome da coleção na meta ids: type: string description: Lista de g7Ids e g5Ids responses: 200: description: Ok schema: type: object required: – results properties: results: type: array items: type: object allOf: – #/definitions/integrationSaveBatchData minimum: 1 description: Resultado da ação de salvar o lote 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/duplicateHolidayDates: post: description: Duplica as datas de feriado de um ano para o outro tags: – Actions x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – baseYear – newYear – holidayId properties: baseYear: type: integer format: int64 description: Ano base newYear: type: integer format: int64 description: Novo Ano holidayId: type: string maxLength: 32 description: Tabelas de Feriados responses: 200: description: Ok schema: type: object required: – results properties: results: type: integer format: int64 description: Resultado da ação de duplicar o feriado 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/issueReportGroupItem: post: description: Processa a execução de item de grupo de modelos tags: – Actions x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – employeeId – itemData properties: employeeId: type: string maxLength: 32 description: Id do colaborador itemData: type: array items: type: object allOf: – #/definitions/issueReportGroupItemData minimum: 1 description: Items de grupo de modelos responses: 200: description: Ok schema: type: object required: – result properties: result: type: object allOf: – #/definitions/issueReportGroupReturn description: Resultado da ação de execução de item de grupo de modelos 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/odata: post: description: tags: – Actions x-senior-visibility: PRIVATE responses: 204: description: No response 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/importReligion: post: description: tags: – Actions x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/importConfig description: responses: 200: description: Ok schema: type: object required: – importJobId properties: importJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/importBank: post: description: tags: – Actions x-senior-visibility: PUBLIC parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/importConfig description: responses: 200: description: Ok schema: type: object required: – importJobId properties: importJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/importCountry: post: description: tags: – Actions x-senior-visibility: PUBLIC parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/importConfig description: responses: 200: description: Ok schema: type: object required: – importJobId properties: importJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/importCity: post: description: tags: – Actions x-senior-visibility: PUBLIC parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/importConfig description: responses: 200: description: Ok schema: type: object required: – importJobId properties: importJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/importAnnotationtype: post: description: tags: – Actions x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/importConfig description: responses: 200: description: Ok schema: type: object required: – importJobId properties: importJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/importCaste: post: description: tags: – Actions x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/importConfig description: responses: 200: description: Ok schema: type: object required: – importJobId properties: importJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/importAddress: post: description: tags: – Actions x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/importConfig description: responses: 200: description: Ok schema: type: object required: – importJobId properties: importJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/importAdministrativeregion: post: description: tags: – Actions x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/importConfig description: responses: 200: description: Ok schema: type: object required: – importJobId properties: importJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/importEmploymentRelationship: post: description: tags: – Actions x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/importConfig description: responses: 200: description: Ok schema: type: object required: – importJobId properties: importJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/importStructure: post: description: tags: – Actions x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/importConfig description: responses: 200: description: Ok schema: type: object required: – importJobId properties: importJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/importCurrency: post: description: tags: – Actions x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/importConfig description: responses: 200: description: Ok schema: type: object required: – importJobId properties: importJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/importFinancialIndex: post: description: tags: – Actions x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/importConfig description: responses: 200: description: Ok schema: type: object required: – importJobId properties: importJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/importAttendant: post: description: tags: – Actions x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/importConfig description: responses: 200: description: Ok schema: type: object required: – importJobId properties: importJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/importEmployee: post: description: tags: – Actions x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/importConfig description: responses: 200: description: Ok schema: type: object required: – importJobId properties: importJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/importCompany: post: description: tags: – Actions x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/importConfig description: responses: 200: description: Ok schema: type: object required: – importJobId properties: importJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/importNis: post: description: tags: – Actions x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/importConfig description: responses: 200: description: Ok schema: type: object required: – importJobId properties: importJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/importPersonNis: post: description: tags: – Actions x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/importConfig description: responses: 200: description: Ok schema: type: object required: – importJobId properties: importJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/importPerson: post: description: tags: – Actions x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/importConfig description: responses: 200: description: Ok schema: type: object required: – importJobId properties: importJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/importDocument: post: description: tags: – Actions x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/importConfig description: responses: 200: description: Ok schema: type: object required: – importJobId properties: importJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/importProfessionalBoardAcronym: post: description: tags: – Actions x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/importConfig description: responses: 200: description: Ok schema: type: object required: – importJobId properties: importJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/importProfessionalcouncil: post: description: tags: – Actions x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/importConfig description: responses: 200: description: Ok schema: type: object required: – importJobId properties: importJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/importApportionment: post: description: tags: – Actions x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/importConfig description: responses: 200: description: Ok schema: type: object required: – importJobId properties: importJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/importOpinion: post: description: tags: – Actions x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/importConfig description: responses: 200: description: Ok schema: type: object required: – importJobId properties: importJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/importEducationdegree: post: description: tags: – Actions x-senior-visibility: PUBLIC parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/importConfig description: responses: 200: description: Ok schema: type: object required: – importJobId properties: importJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/importKnowledgearea: post: description: tags: – Actions x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/importConfig description: responses: 200: description: Ok schema: type: object required: – importJobId properties: importJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/importNationality: post: description: tags: – Actions x-senior-visibility: PUBLIC parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/importConfig description: responses: 200: description: Ok schema: type: object required: – importJobId properties: importJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/importTimetrackingsituation: post: description: tags: – Actions x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/importConfig description: responses: 200: description: Ok schema: type: object required: – importJobId properties: importJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/importDisability: post: description: tags: – Actions x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/importConfig description: responses: 200: description: Ok schema: type: object required: – importJobId properties: importJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/importDocumentType: post: description: tags: – Actions x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/importConfig description: responses: 200: description: Ok schema: type: object required: – importJobId properties: importJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/importIssActivity: post: description: tags: – Actions x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/importConfig description: responses: 200: description: Ok schema: type: object required: – importJobId properties: importJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/importResignationReason: post: description: tags: – Actions x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/importConfig description: responses: 200: description: Ok schema: type: object required: – importJobId properties: importJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/importDismissalMovimentation: post: description: tags: – Actions x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/importConfig description: responses: 200: description: Ok schema: type: object required: – importJobId properties: importJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/importCidByCnae: post: description: tags: – Actions x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/importConfig description: responses: 200: description: Ok schema: type: object required: – importJobId properties: importJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/importCompetencyskillproficiencytable: post: description: tags: – Actions x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/importConfig description: responses: 200: description: Ok schema: type: object required: – importJobId properties: importJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/importExpenseNature: post: description: tags: – Actions x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/importConfig description: responses: 200: description: Ok schema: type: object required: – importJobId properties: importJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/importIssLimit: post: description: tags: – Actions x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/importConfig description: responses: 200: description: Ok schema: type: object required: – importJobId properties: importJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/importElectronicAddress: post: description: tags: – Actions x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/importConfig description: responses: 200: description: Ok schema: type: object required: – importJobId properties: importJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/importDisease: post: description: tags: – Actions x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/importConfig description: responses: 200: description: Ok schema: type: object required: – importJobId properties: importJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/importSubgroupDisease: post: description: tags: – Actions x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/importConfig description: responses: 200: description: Ok schema: type: object required: – importJobId properties: importJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/importWorkSchedules: post: description: tags: – Actions x-senior-visibility: PUBLIC parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/importConfig description: responses: 200: description: Ok schema: type: object required: – importJobId properties: importJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/importLicenseInformation: post: description: tags: – Actions x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/importConfig description: responses: 200: description: Ok schema: type: object required: – importJobId properties: importJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/importMiscellaneousIndication: post: description: tags: – Actions x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/importConfig description: responses: 200: description: Ok schema: type: object required: – importJobId properties: importJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/importCompetencytype: post: description: tags: – Actions x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/importConfig description: responses: 200: description: Ok schema: type: object required: – importJobId properties: importJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/importDismissalReason: post: description: tags: – Actions x-senior-visibility: PUBLIC parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/importConfig description: responses: 200: description: Ok schema: type: object required: – importJobId properties: importJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/importMovimentationreason: post: description: tags: – Actions x-senior-visibility: PUBLIC parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/importConfig description: responses: 200: description: Ok schema: type: object required: – importJobId properties: importJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/importOrganizationalChartStructure: post: description: tags: – Actions x-senior-visibility: PUBLIC parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/importConfig description: responses: 200: description: Ok schema: type: object required: – importJobId properties: importJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/importRevenue: post: description: tags: – Actions x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/importConfig description: responses: 200: description: Ok schema: type: object required: – importJobId properties: importJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/importHoliday: post: description: tags: – Actions x-senior-visibility: PUBLIC parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/importConfig description: responses: 200: description: Ok schema: type: object required: – importJobId properties: importJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/importQualification: post: description: tags: – Actions x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/importConfig description: responses: 200: description: Ok schema: type: object required: – importJobId properties: importJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/importWorkshift: post: description: tags: – Actions x-senior-visibility: PUBLIC parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/importConfig description: responses: 200: description: Ok schema: type: object required: – importJobId properties: importJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/importWorkshiftGroup: post: description: tags: – Actions x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/importConfig description: responses: 200: description: Ok schema: type: object required: – importJobId properties: importJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/importWorkshiftSchedule: post: description: tags: – Actions x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/importConfig description: responses: 200: description: Ok schema: type: object required: – importJobId properties: importJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/importWorkshiftClass: post: description: tags: – Actions x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/importConfig description: responses: 200: description: Ok schema: type: object required: – importJobId properties: importJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/importAutomaticWorkScheduleSearch: post: description: tags: – Actions x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/importConfig description: responses: 200: description: Ok schema: type: object required: – importJobId properties: importJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/importMeansOfTransport: post: description: tags: – Actions x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/importConfig description: responses: 200: description: Ok schema: type: object required: – importJobId properties: importJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/importWorkstationGroupProfile: post: description: tags: – Actions x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/importConfig description: responses: 200: description: Ok schema: type: object required: – importJobId properties: importJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/importActivityfield: post: description: tags: – Actions x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/importConfig description: responses: 200: description: Ok schema: type: object required: – importJobId properties: importJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/importOthercompany: post: description: tags: – Actions x-senior-visibility: PUBLIC parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/importConfig description: responses: 200: description: Ok schema: type: object required: – importJobId properties: importJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/importTransportationVoucherScale: post: description: tags: – Actions x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/importConfig description: responses: 200: description: Ok schema: type: object required: – importJobId properties: importJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/importLinePrices: post: description: tags: – Actions x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/importConfig description: responses: 200: description: Ok schema: type: object required: – importJobId properties: importJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/importTransportLine: post: description: tags: – Actions x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/importConfig description: responses: 200: description: Ok schema: type: object required: – importJobId properties: importJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/importReportGroup: post: description: tags: – Actions x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/importConfig description: responses: 200: description: Ok schema: type: object required: – importJobId properties: importJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/importReportGroupItem: post: description: tags: – Actions x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/importConfig description: responses: 200: description: Ok schema: type: object required: – importJobId properties: importJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/importInsurance: post: description: tags: – Actions x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/importConfig description: responses: 200: description: Ok schema: type: object required: – importJobId properties: importJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/importWagetypeGroup: post: description: tags: – Actions x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/importConfig description: responses: 200: description: Ok schema: type: object required: – importJobId properties: importJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/importPointEmbarkation: post: description: tags: – Actions x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/importConfig description: responses: 200: description: Ok schema: type: object required: – importJobId properties: importJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/actions/importDiseaseICD11: post: description: tags: – Actions x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – config properties: config: type: object allOf: – #/definitions/importConfig description: responses: 200: description: Ok schema: type: object required: – importJobId properties: importJobId: type: string description: 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/events/employmentRelationshipUpdate: post: description: Atualização da entidade employmentRelationship x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – employmentRelationshipDTO properties: employmentRelationshipDTO: type: object allOf: – #/definitions/employmentRelationshipDTO description: Vínculo para evento de atualização responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/employmentRelationshipBulkUpdate: post: description: Atualização em lote da entidade employmentRelationship x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – items properties: items: type: array items: type: object allOf: – #/definitions/employmentRelationshipDTO minimum: 1 description: Lista de Vínculos para evento de atualização responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/workshiftBulkUpdate: post: description: Atualização em lote da entidade historicalJobPosition x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – items properties: items: type: array items: type: object allOf: – #/definitions/workshiftDTO minimum: 1 description: Lista de items de dados da atualização do histórico de cargo responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/workshiftDelete: post: description: Remoção da entidade historicalJobPosition x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – id properties: id: type: string description: Id de histórico de cargo responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importReligionEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportReligionEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importBankEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportBankEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importBankBranchEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportBankBranchEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importCountryEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportCountryEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importStateEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportStateEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importCityEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportCityEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importAnnotationtypeEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportAnnotationtypeEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importNeighborhoodEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportNeighborhoodEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importCasteEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportCasteEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importAddressEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportAddressEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importAdministrativeregionEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportAdministrativeregionEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importEmploymentRelationshipEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportEmploymentRelationshipEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importPaymentRelationshipEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportPaymentRelationshipEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importBenefitRelationshipEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportBenefitRelationshipEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importPersonalBoardRelationshipEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportPersonalBoardRelationshipEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importStructureEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportStructureEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importCurrencyEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportCurrencyEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importFinancialIndexEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportFinancialIndexEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importIndexValueEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportIndexValueEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importConversionRatesEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportConversionRatesEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importAttendantEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportAttendantEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importEmployeeEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportEmployeeEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importCompanyEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportCompanyEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importNisEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportNisEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importPersonNisEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportPersonNisEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importPersonEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportPersonEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importDocumentEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportDocumentEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importProfessionalBoardAcronymEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportProfessionalBoardAcronymEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importProfessionalcouncilEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportProfessionalcouncilEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importApportionmentEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportApportionmentEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importOpinionEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportOpinionEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importEducationdegreeEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportEducationdegreeEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importKnowledgeareaEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportKnowledgeareaEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importNationalityEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportNationalityEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importTimetrackingsituationEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportTimetrackingsituationEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importDisabilityEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportDisabilityEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importDocumentTypeEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportDocumentTypeEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importIssActivityEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportIssActivityEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importResignationReasonEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportResignationReasonEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importDismissalMovimentationEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportDismissalMovimentationEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importCidByCnaeEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportCidByCnaeEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importCompetencyskillproficiencytableEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportCompetencyskillproficiencytableEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importExpenseNatureEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportExpenseNatureEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importCompetencyskillproficiencylevelEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportCompetencyskillproficiencylevelEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importIssLimitEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportIssLimitEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importElectronicAddressEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportElectronicAddressEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importDiseaseEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportDiseaseEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importSubgroupDiseaseEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportSubgroupDiseaseEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importWorkSchedulesEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportWorkSchedulesEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importClockingEventOfWorkScheduleEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportClockingEventOfWorkScheduleEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importClockingEventBandsEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportClockingEventBandsEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importPublicPlaceEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportPublicPlaceEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importLicenseInformationEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportLicenseInformationEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importMiscellaneousIndicationEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportMiscellaneousIndicationEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importCompetencytypeEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportCompetencytypeEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importDismissalReasonEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportDismissalReasonEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importDismissalReasonSefipEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportDismissalReasonSefipEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importDismissalReasonEsocialEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportDismissalReasonEsocialEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importMovimentationreasonEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportMovimentationreasonEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importOrganizationalChartStructureEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportOrganizationalChartStructureEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importOrganizationalChartDepartmentEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportOrganizationalChartDepartmentEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importOrganizationalChartDepartmentHierarchyEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportOrganizationalChartDepartmentHierarchyEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importRevenueEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportRevenueEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importHolidayDatesEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportHolidayDatesEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importHolidayEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportHolidayEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importQualificationEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportQualificationEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importWorkshiftEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportWorkshiftEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importWorkshiftGroupEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportWorkshiftGroupEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importWorkshiftScheduleEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportWorkshiftScheduleEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importWorkshiftClassEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportWorkshiftClassEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importAutomaticWorkScheduleSearchEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportAutomaticWorkScheduleSearchEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importMeansOfTransportEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportMeansOfTransportEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importWorkstationGroupProfileEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportWorkstationGroupProfileEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importActivityfieldEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportActivityfieldEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importOthercompanyEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportOthercompanyEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importTransportationVoucherScaleEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportTransportationVoucherScaleEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importTransportationVoucherScaleItemEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportTransportationVoucherScaleItemEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importLinePricesEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportLinePricesEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importTransportLineEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportTransportLineEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importReportGroupEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportReportGroupEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importReportGroupItemEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportReportGroupItemEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importInsuranceEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportInsuranceEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importWagetypeGroupEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportWagetypeGroupEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importPointEmbarkationEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportPointEmbarkationEvent: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/importDiseaseICD11Event: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/importEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/events/exportDiseaseICD11Event: post: description: x-senior-event: true tags: – Events parameters: – name: input in: body required: true schema: type: object required: – eventpl properties: eventpl: type: object allOf: – #/definitions/exportEventStatus description: responses: 200: description: OK default: description: Error response schema: #/definitions/genericError /general_register/entities/religion: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/religion responses: 200: description: The created resource schema: #/definitions/religion 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/religion responses: 200: description: The created resource schema: #/definitions/religion 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/religion 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/religion/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/religion responses: 200: description: Ok schema: #/definitions/religion 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/religion responses: 200: description: Ok schema: #/definitions/religion 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/religion 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/religion/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/religion responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/bank: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/bank responses: 200: description: The created resource schema: #/definitions/bank 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/bank responses: 200: description: The created resource schema: #/definitions/bank 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/bank 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/bank/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/bank responses: 200: description: Ok schema: #/definitions/bank 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/bank responses: 200: description: Ok schema: #/definitions/bank 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/bank 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/bank/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/bank responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/bankBranch: get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/bankBranch 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/bank/{parentId}/bankBranches: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: parentId in: path required: true type: string – name: entity in: body required: true schema: type: array items: #/definitions/bankBranch responses: 200: description: The created resources schema: type: array items: #/definitions/bankBranch 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: parentId in: path required: true type: string – name: entity in: body required: true schema: type: array items: #/definitions/bankBranch responses: 200: description: The created resources schema: type: array items: #/definitions/bankBranch 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: parentId in: path required: true type: string – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/bankBranch 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/bank/{parentId}/bankBranches/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/bankBranch responses: 200: description: Ok schema: #/definitions/bankBranch 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/bankBranch responses: 200: description: Ok schema: #/definitions/bankBranch 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/bankBranch 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/country: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/country responses: 200: description: The created resource schema: #/definitions/country 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/country responses: 200: description: The created resource schema: #/definitions/country 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/country 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/country/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/country responses: 200: description: Ok schema: #/definitions/country 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/country responses: 200: description: Ok schema: #/definitions/country 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/country 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/country/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/country responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/state: get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/state 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/country/{parentId}/staties: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: parentId in: path required: true type: string – name: entity in: body required: true schema: type: array items: #/definitions/state responses: 200: description: The created resources schema: type: array items: #/definitions/state 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: parentId in: path required: true type: string – name: entity in: body required: true schema: type: array items: #/definitions/state responses: 200: description: The created resources schema: type: array items: #/definitions/state 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: parentId in: path required: true type: string – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/state 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/country/{parentId}/staties/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/state responses: 200: description: Ok schema: #/definitions/state 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/state responses: 200: description: Ok schema: #/definitions/state 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/state 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/city: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/city responses: 200: description: The created resource schema: #/definitions/city 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/city responses: 200: description: The created resource schema: #/definitions/city 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/city 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/city/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/city responses: 200: description: Ok schema: #/definitions/city 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/city responses: 200: description: Ok schema: #/definitions/city 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/city 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/city/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/city responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/annotationtype: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/annotationtype responses: 200: description: The created resource schema: #/definitions/annotationtype 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/annotationtype responses: 200: description: The created resource schema: #/definitions/annotationtype 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/annotationtype 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/annotationtype/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/annotationtype responses: 200: description: Ok schema: #/definitions/annotationtype 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/annotationtype responses: 200: description: Ok schema: #/definitions/annotationtype 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/annotationtype 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/annotationtype/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/annotationtype responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/neighborhood: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/neighborhood responses: 200: description: The created resource schema: #/definitions/neighborhood 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/neighborhood responses: 200: description: The created resource schema: #/definitions/neighborhood 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/neighborhood 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/neighborhood/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/neighborhood responses: 200: description: Ok schema: #/definitions/neighborhood 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/neighborhood responses: 200: description: Ok schema: #/definitions/neighborhood 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/neighborhood 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/city/{parentId}/neighborhood: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: entity in: body required: true schema: type: array items: #/definitions/neighborhood responses: 200: description: The created resources schema: type: array items: #/definitions/neighborhood 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: entity in: body required: true schema: type: array items: #/definitions/neighborhood responses: 200: description: The created resources schema: type: array items: #/definitions/neighborhood 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/neighborhood 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/city/{parentId}/neighborhood/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/neighborhood responses: 200: description: Ok schema: #/definitions/neighborhood 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/neighborhood responses: 200: description: Ok schema: #/definitions/neighborhood 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/neighborhood 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/neighborhood/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/neighborhood responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/caste: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/caste responses: 200: description: The created resource schema: #/definitions/caste 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/caste responses: 200: description: The created resource schema: #/definitions/caste 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/caste 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/caste/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/caste responses: 200: description: Ok schema: #/definitions/caste 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/caste responses: 200: description: Ok schema: #/definitions/caste 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/caste 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/caste/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/caste responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/address: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/address responses: 200: description: The created resource schema: #/definitions/address 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/address responses: 200: description: The created resource schema: #/definitions/address 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/address 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/address/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/address responses: 200: description: Ok schema: #/definitions/address 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/address responses: 200: description: Ok schema: #/definitions/address 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/address 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/address/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/address responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/administrativeregion: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/administrativeregion responses: 200: description: The created resource schema: #/definitions/administrativeregion 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/administrativeregion responses: 200: description: The created resource schema: #/definitions/administrativeregion 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/administrativeregion 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/administrativeregion/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/administrativeregion responses: 200: description: Ok schema: #/definitions/administrativeregion 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/administrativeregion responses: 200: description: Ok schema: #/definitions/administrativeregion 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/administrativeregion 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/administrativeregion/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/administrativeregion responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/employmentRelationship: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/employmentRelationship responses: 200: description: The created resource schema: #/definitions/employmentRelationship 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/employmentRelationship responses: 200: description: The created resource schema: #/definitions/employmentRelationship 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/employmentRelationship 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/employmentRelationship/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/employmentRelationship responses: 200: description: Ok schema: #/definitions/employmentRelationship 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/employmentRelationship responses: 200: description: Ok schema: #/definitions/employmentRelationship 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/employmentRelationship 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/employmentRelationship/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/employmentRelationship responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/paymentRelationship: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/paymentRelationship responses: 200: description: The created resource schema: #/definitions/paymentRelationship 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/paymentRelationship responses: 200: description: The created resource schema: #/definitions/paymentRelationship 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/paymentRelationship 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/paymentRelationship/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/paymentRelationship responses: 200: description: Ok schema: #/definitions/paymentRelationship 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/paymentRelationship responses: 200: description: Ok schema: #/definitions/paymentRelationship 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/paymentRelationship 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/employmentRelationship/{parentId}/paymentRelationship: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: entity in: body required: true schema: type: object allOf: – #/definitions/paymentRelationship responses: 200: description: The created resource schema: #/definitions/paymentRelationship 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: entity in: body required: true schema: type: object allOf: – #/definitions/paymentRelationship responses: 200: description: The created resource schema: #/definitions/paymentRelationship 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/paymentRelationship 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/employmentRelationship/{parentId}/paymentRelationship/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/paymentRelationship responses: 200: description: Ok schema: #/definitions/paymentRelationship 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/paymentRelationship responses: 200: description: Ok schema: #/definitions/paymentRelationship 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/paymentRelationship 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/paymentRelationship/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/paymentRelationship responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/benefitRelationship: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/benefitRelationship responses: 200: description: The created resource schema: #/definitions/benefitRelationship 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/benefitRelationship responses: 200: description: The created resource schema: #/definitions/benefitRelationship 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/benefitRelationship 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/benefitRelationship/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/benefitRelationship responses: 200: description: Ok schema: #/definitions/benefitRelationship 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/benefitRelationship responses: 200: description: Ok schema: #/definitions/benefitRelationship 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/benefitRelationship 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/employmentRelationship/{parentId}/benefitRelationship: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: entity in: body required: true schema: type: object allOf: – #/definitions/benefitRelationship responses: 200: description: The created resource schema: #/definitions/benefitRelationship 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: entity in: body required: true schema: type: object allOf: – #/definitions/benefitRelationship responses: 200: description: The created resource schema: #/definitions/benefitRelationship 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/benefitRelationship 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/employmentRelationship/{parentId}/benefitRelationship/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/benefitRelationship responses: 200: description: Ok schema: #/definitions/benefitRelationship 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/benefitRelationship responses: 200: description: Ok schema: #/definitions/benefitRelationship 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/benefitRelationship 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/benefitRelationship/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/benefitRelationship responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/personalBoardRelationship: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/personalBoardRelationship responses: 200: description: The created resource schema: #/definitions/personalBoardRelationship 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/personalBoardRelationship responses: 200: description: The created resource schema: #/definitions/personalBoardRelationship 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/personalBoardRelationship 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/personalBoardRelationship/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/personalBoardRelationship responses: 200: description: Ok schema: #/definitions/personalBoardRelationship 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/personalBoardRelationship responses: 200: description: Ok schema: #/definitions/personalBoardRelationship 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/personalBoardRelationship 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/employmentRelationship/{parentId}/personalBoardRelationship: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: entity in: body required: true schema: type: object allOf: – #/definitions/personalBoardRelationship responses: 200: description: The created resource schema: #/definitions/personalBoardRelationship 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: entity in: body required: true schema: type: object allOf: – #/definitions/personalBoardRelationship responses: 200: description: The created resource schema: #/definitions/personalBoardRelationship 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/personalBoardRelationship 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/employmentRelationship/{parentId}/personalBoardRelationship/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/personalBoardRelationship responses: 200: description: Ok schema: #/definitions/personalBoardRelationship 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/personalBoardRelationship responses: 200: description: Ok schema: #/definitions/personalBoardRelationship 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/personalBoardRelationship 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/personalBoardRelationship/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/personalBoardRelationship responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/structure: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/structure responses: 200: description: The created resource schema: #/definitions/structure 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/structure responses: 200: description: The created resource schema: #/definitions/structure 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/structure 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/structure/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/structure responses: 200: description: Ok schema: #/definitions/structure 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/structure responses: 200: description: Ok schema: #/definitions/structure 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/structure 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/structure/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/structure responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/currency: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/currency responses: 200: description: The created resource schema: #/definitions/currency 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/currency responses: 200: description: The created resource schema: #/definitions/currency 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/currency 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/currency/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/currency responses: 200: description: Ok schema: #/definitions/currency 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/currency responses: 200: description: Ok schema: #/definitions/currency 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/currency 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/currency/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/currency responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/financialIndex: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/financialIndex responses: 200: description: The created resource schema: #/definitions/financialIndex 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/financialIndex responses: 200: description: The created resource schema: #/definitions/financialIndex 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/financialIndex 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/financialIndex/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/financialIndex responses: 200: description: Ok schema: #/definitions/financialIndex 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/financialIndex responses: 200: description: Ok schema: #/definitions/financialIndex 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/financialIndex 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/financialIndex/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/financialIndex responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/indexValue: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/indexValue responses: 200: description: The created resource schema: #/definitions/indexValue 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/indexValue responses: 200: description: The created resource schema: #/definitions/indexValue 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/indexValue 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/indexValue/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/indexValue responses: 200: description: Ok schema: #/definitions/indexValue 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/indexValue responses: 200: description: Ok schema: #/definitions/indexValue 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/indexValue 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/financialIndex/{parentId}/indexValue: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: entity in: body required: true schema: type: array items: #/definitions/indexValue responses: 200: description: The created resources schema: type: array items: #/definitions/indexValue 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: entity in: body required: true schema: type: array items: #/definitions/indexValue responses: 200: description: The created resources schema: type: array items: #/definitions/indexValue 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/indexValue 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/financialIndex/{parentId}/indexValue/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/indexValue responses: 200: description: Ok schema: #/definitions/indexValue 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/indexValue responses: 200: description: Ok schema: #/definitions/indexValue 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/indexValue 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/indexValue/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/indexValue responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/conversionRates: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/conversionRates responses: 200: description: The created resource schema: #/definitions/conversionRates 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/conversionRates responses: 200: description: The created resource schema: #/definitions/conversionRates 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/conversionRates 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/conversionRates/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/conversionRates responses: 200: description: Ok schema: #/definitions/conversionRates 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/conversionRates responses: 200: description: Ok schema: #/definitions/conversionRates 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/conversionRates 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/currency/{parentId}/conversionRates: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: entity in: body required: true schema: type: array items: #/definitions/conversionRates responses: 200: description: The created resources schema: type: array items: #/definitions/conversionRates 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: entity in: body required: true schema: type: array items: #/definitions/conversionRates responses: 200: description: The created resources schema: type: array items: #/definitions/conversionRates 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/conversionRates 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/currency/{parentId}/conversionRates/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/conversionRates responses: 200: description: Ok schema: #/definitions/conversionRates 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/conversionRates responses: 200: description: Ok schema: #/definitions/conversionRates 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/conversionRates 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/conversionRates/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/conversionRates responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/attendant: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/attendant responses: 200: description: The created resource schema: #/definitions/attendant 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/attendant responses: 200: description: The created resource schema: #/definitions/attendant 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/attendant 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/attendant/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/attendant responses: 200: description: Ok schema: #/definitions/attendant 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/attendant responses: 200: description: Ok schema: #/definitions/attendant 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/attendant 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/attendant/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/attendant responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/employee: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/employee responses: 200: description: The created resource schema: #/definitions/employee 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/employee responses: 200: description: The created resource schema: #/definitions/employee 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/employee 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/employee/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/employee responses: 200: description: Ok schema: #/definitions/employee 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/employee responses: 200: description: Ok schema: #/definitions/employee 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/employee 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/employee/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/employee responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/company: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/company responses: 200: description: The created resource schema: #/definitions/company 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/company responses: 200: description: The created resource schema: #/definitions/company 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/company 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/company/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/company responses: 200: description: Ok schema: #/definitions/company 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/company responses: 200: description: Ok schema: #/definitions/company 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/company 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/company/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/company responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/nis: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/nis responses: 200: description: The created resource schema: #/definitions/nis 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/nis responses: 200: description: The created resource schema: #/definitions/nis 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/nis 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/nis/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/nis responses: 200: description: Ok schema: #/definitions/nis 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/nis responses: 200: description: Ok schema: #/definitions/nis 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/nis 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/nis/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/nis responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/personNis: post: tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/personNis responses: 200: description: The created resource schema: #/definitions/personNis 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/personNis responses: 200: description: The created resource schema: #/definitions/personNis 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/personNis 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/personNis/{id}: put: tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/personNis responses: 200: description: Ok schema: #/definitions/personNis 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/personNis responses: 200: description: Ok schema: #/definitions/personNis 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/personNis 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/personNis/bulk: post: tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/personNis responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/person: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/person responses: 200: description: The created resource schema: #/definitions/person 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/person responses: 200: description: The created resource schema: #/definitions/person 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/person 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/person/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/person responses: 200: description: Ok schema: #/definitions/person 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/person responses: 200: description: Ok schema: #/definitions/person 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/person 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/person/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/person responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/document: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/document responses: 200: description: The created resource schema: #/definitions/document 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/document responses: 200: description: The created resource schema: #/definitions/document 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/document 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/document/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/document responses: 200: description: Ok schema: #/definitions/document 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/document responses: 200: description: Ok schema: #/definitions/document 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/document 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/document/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/document responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/professionalBoardAcronym: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/professionalBoardAcronym responses: 200: description: The created resource schema: #/definitions/professionalBoardAcronym 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/professionalBoardAcronym responses: 200: description: The created resource schema: #/definitions/professionalBoardAcronym 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/professionalBoardAcronym 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/professionalBoardAcronym/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/professionalBoardAcronym responses: 200: description: Ok schema: #/definitions/professionalBoardAcronym 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/professionalBoardAcronym responses: 200: description: Ok schema: #/definitions/professionalBoardAcronym 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/professionalBoardAcronym 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/professionalBoardAcronym/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/professionalBoardAcronym responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/professionalcouncil: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/professionalcouncil responses: 200: description: The created resource schema: #/definitions/professionalcouncil 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/professionalcouncil responses: 200: description: The created resource schema: #/definitions/professionalcouncil 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/professionalcouncil 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/professionalcouncil/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/professionalcouncil responses: 200: description: Ok schema: #/definitions/professionalcouncil 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/professionalcouncil responses: 200: description: Ok schema: #/definitions/professionalcouncil 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/professionalcouncil 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/professionalcouncil/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/professionalcouncil responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/apportionment: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/apportionment responses: 200: description: The created resource schema: #/definitions/apportionment 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/apportionment responses: 200: description: The created resource schema: #/definitions/apportionment 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/apportionment 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/apportionment/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/apportionment responses: 200: description: Ok schema: #/definitions/apportionment 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/apportionment responses: 200: description: Ok schema: #/definitions/apportionment 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/apportionment 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/apportionment/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/apportionment responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/opinion: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/opinion responses: 200: description: The created resource schema: #/definitions/opinion 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/opinion responses: 200: description: The created resource schema: #/definitions/opinion 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/opinion 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/opinion/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/opinion responses: 200: description: Ok schema: #/definitions/opinion 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/opinion responses: 200: description: Ok schema: #/definitions/opinion 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/opinion 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/opinion/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/opinion responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/educationdegree: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/educationdegree responses: 200: description: The created resource schema: #/definitions/educationdegree 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/educationdegree responses: 200: description: The created resource schema: #/definitions/educationdegree 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/educationdegree 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/educationdegree/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/educationdegree responses: 200: description: Ok schema: #/definitions/educationdegree 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/educationdegree responses: 200: description: Ok schema: #/definitions/educationdegree 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/educationdegree 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/educationdegree/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/educationdegree responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/knowledgearea: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/knowledgearea responses: 200: description: The created resource schema: #/definitions/knowledgearea 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/knowledgearea responses: 200: description: The created resource schema: #/definitions/knowledgearea 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/knowledgearea 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/knowledgearea/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/knowledgearea responses: 200: description: Ok schema: #/definitions/knowledgearea 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/knowledgearea responses: 200: description: Ok schema: #/definitions/knowledgearea 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/knowledgearea 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/knowledgearea/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/knowledgearea responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/nationality: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/nationality responses: 200: description: The created resource schema: #/definitions/nationality 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/nationality responses: 200: description: The created resource schema: #/definitions/nationality 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/nationality 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/nationality/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/nationality responses: 200: description: Ok schema: #/definitions/nationality 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/nationality responses: 200: description: Ok schema: #/definitions/nationality 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/nationality 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/nationality/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/nationality responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/timetrackingsituation: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/timetrackingsituation responses: 200: description: The created resource schema: #/definitions/timetrackingsituation 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/timetrackingsituation responses: 200: description: The created resource schema: #/definitions/timetrackingsituation 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/timetrackingsituation 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/timetrackingsituation/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/timetrackingsituation responses: 200: description: Ok schema: #/definitions/timetrackingsituation 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/timetrackingsituation responses: 200: description: Ok schema: #/definitions/timetrackingsituation 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/timetrackingsituation 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/timetrackingsituation/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/timetrackingsituation responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/disability: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/disability responses: 200: description: The created resource schema: #/definitions/disability 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/disability responses: 200: description: The created resource schema: #/definitions/disability 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/disability 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/disability/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/disability responses: 200: description: Ok schema: #/definitions/disability 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/disability responses: 200: description: Ok schema: #/definitions/disability 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/disability 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/disability/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/disability responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/documentType: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/documentType responses: 200: description: The created resource schema: #/definitions/documentType 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/documentType responses: 200: description: The created resource schema: #/definitions/documentType 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/documentType 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/documentType/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/documentType responses: 200: description: Ok schema: #/definitions/documentType 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/documentType responses: 200: description: Ok schema: #/definitions/documentType 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/documentType 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/documentType/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/documentType responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/issActivity: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/issActivity responses: 200: description: The created resource schema: #/definitions/issActivity 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/issActivity responses: 200: description: The created resource schema: #/definitions/issActivity 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/issActivity 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/issActivity/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/issActivity responses: 200: description: Ok schema: #/definitions/issActivity 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/issActivity responses: 200: description: Ok schema: #/definitions/issActivity 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/issActivity 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/issActivity/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/issActivity responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/resignationReason: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/resignationReason responses: 200: description: The created resource schema: #/definitions/resignationReason 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/resignationReason responses: 200: description: The created resource schema: #/definitions/resignationReason 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/resignationReason 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/resignationReason/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/resignationReason responses: 200: description: Ok schema: #/definitions/resignationReason 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/resignationReason responses: 200: description: Ok schema: #/definitions/resignationReason 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/resignationReason 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/resignationReason/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/resignationReason responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/dismissalMovimentation: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/dismissalMovimentation responses: 200: description: The created resource schema: #/definitions/dismissalMovimentation 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/dismissalMovimentation responses: 200: description: The created resource schema: #/definitions/dismissalMovimentation 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/dismissalMovimentation 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/dismissalMovimentation/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/dismissalMovimentation responses: 200: description: Ok schema: #/definitions/dismissalMovimentation 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/dismissalMovimentation responses: 200: description: Ok schema: #/definitions/dismissalMovimentation 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/dismissalMovimentation 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/dismissalMovimentation/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/dismissalMovimentation responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/cidByCnae: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/cidByCnae responses: 200: description: The created resource schema: #/definitions/cidByCnae 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/cidByCnae responses: 200: description: The created resource schema: #/definitions/cidByCnae 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/cidByCnae 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/cidByCnae/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/cidByCnae responses: 200: description: Ok schema: #/definitions/cidByCnae 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/cidByCnae responses: 200: description: Ok schema: #/definitions/cidByCnae 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/cidByCnae 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/cidByCnae/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/cidByCnae responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/competencyskillproficiencytable: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/competencyskillproficiencytable responses: 200: description: The created resource schema: #/definitions/competencyskillproficiencytable 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/competencyskillproficiencytable responses: 200: description: The created resource schema: #/definitions/competencyskillproficiencytable 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/competencyskillproficiencytable 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/competencyskillproficiencytable/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/competencyskillproficiencytable responses: 200: description: Ok schema: #/definitions/competencyskillproficiencytable 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/competencyskillproficiencytable responses: 200: description: Ok schema: #/definitions/competencyskillproficiencytable 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/competencyskillproficiencytable 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/competencyskillproficiencytable/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/competencyskillproficiencytable responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/expenseNature: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/expenseNature responses: 200: description: The created resource schema: #/definitions/expenseNature 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/expenseNature responses: 200: description: The created resource schema: #/definitions/expenseNature 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/expenseNature 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/expenseNature/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/expenseNature responses: 200: description: Ok schema: #/definitions/expenseNature 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/expenseNature responses: 200: description: Ok schema: #/definitions/expenseNature 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/expenseNature 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/expenseNature/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/expenseNature responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/competencyskillproficiencylevel: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/competencyskillproficiencylevel responses: 200: description: The created resource schema: #/definitions/competencyskillproficiencylevel 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/competencyskillproficiencylevel responses: 200: description: The created resource schema: #/definitions/competencyskillproficiencylevel 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/competencyskillproficiencylevel 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/competencyskillproficiencylevel/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/competencyskillproficiencylevel responses: 200: description: Ok schema: #/definitions/competencyskillproficiencylevel 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/competencyskillproficiencylevel responses: 200: description: Ok schema: #/definitions/competencyskillproficiencylevel 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/competencyskillproficiencylevel 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/competencyskillproficiencytable/{parentId}/levels: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: entity in: body required: true schema: type: array items: #/definitions/competencyskillproficiencylevel responses: 200: description: The created resources schema: type: array items: #/definitions/competencyskillproficiencylevel 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: entity in: body required: true schema: type: array items: #/definitions/competencyskillproficiencylevel responses: 200: description: The created resources schema: type: array items: #/definitions/competencyskillproficiencylevel 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/competencyskillproficiencylevel 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/competencyskillproficiencytable/{parentId}/levels/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/competencyskillproficiencylevel responses: 200: description: Ok schema: #/definitions/competencyskillproficiencylevel 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/competencyskillproficiencylevel responses: 200: description: Ok schema: #/definitions/competencyskillproficiencylevel 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/competencyskillproficiencylevel 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/competencyskillproficiencylevel/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/competencyskillproficiencylevel responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/issLimit: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/issLimit responses: 200: description: The created resource schema: #/definitions/issLimit 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/issLimit responses: 200: description: The created resource schema: #/definitions/issLimit 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/issLimit 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/issLimit/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/issLimit responses: 200: description: Ok schema: #/definitions/issLimit 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/issLimit responses: 200: description: Ok schema: #/definitions/issLimit 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/issLimit 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/issLimit/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/issLimit responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/electronicAddress: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/electronicAddress responses: 200: description: The created resource schema: #/definitions/electronicAddress 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/electronicAddress responses: 200: description: The created resource schema: #/definitions/electronicAddress 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/electronicAddress 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/electronicAddress/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/electronicAddress responses: 200: description: Ok schema: #/definitions/electronicAddress 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/electronicAddress responses: 200: description: Ok schema: #/definitions/electronicAddress 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/electronicAddress 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/electronicAddress/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/electronicAddress responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/disease: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/disease responses: 200: description: The created resource schema: #/definitions/disease 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/disease responses: 200: description: The created resource schema: #/definitions/disease 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/disease 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/disease/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/disease responses: 200: description: Ok schema: #/definitions/disease 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/disease responses: 200: description: Ok schema: #/definitions/disease 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/disease 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/disease/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/disease responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/subgroupDisease: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/subgroupDisease responses: 200: description: The created resource schema: #/definitions/subgroupDisease 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/subgroupDisease responses: 200: description: The created resource schema: #/definitions/subgroupDisease 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/subgroupDisease 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/subgroupDisease/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/subgroupDisease responses: 200: description: Ok schema: #/definitions/subgroupDisease 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/subgroupDisease responses: 200: description: Ok schema: #/definitions/subgroupDisease 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/subgroupDisease 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/subgroupDisease/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/subgroupDisease responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/workSchedules: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/workSchedules responses: 200: description: The created resource schema: #/definitions/workSchedules 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/workSchedules responses: 200: description: The created resource schema: #/definitions/workSchedules 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/workSchedules 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/workSchedules/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/workSchedules responses: 200: description: Ok schema: #/definitions/workSchedules 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/workSchedules responses: 200: description: Ok schema: #/definitions/workSchedules 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/workSchedules 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/workSchedules/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/workSchedules responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/clockingEventOfWorkSchedule: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/clockingEventOfWorkSchedule responses: 200: description: The created resource schema: #/definitions/clockingEventOfWorkSchedule 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/clockingEventOfWorkSchedule responses: 200: description: The created resource schema: #/definitions/clockingEventOfWorkSchedule 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/clockingEventOfWorkSchedule 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/clockingEventOfWorkSchedule/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/clockingEventOfWorkSchedule responses: 200: description: Ok schema: #/definitions/clockingEventOfWorkSchedule 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/clockingEventOfWorkSchedule responses: 200: description: Ok schema: #/definitions/clockingEventOfWorkSchedule 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/clockingEventOfWorkSchedule 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/workSchedules/{parentId}/clockingEventOfWorkSchedule: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: parentId in: path required: true type: string – name: entity in: body required: true schema: type: array items: #/definitions/clockingEventOfWorkSchedule responses: 200: description: The created resources schema: type: array items: #/definitions/clockingEventOfWorkSchedule 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: parentId in: path required: true type: string – name: entity in: body required: true schema: type: array items: #/definitions/clockingEventOfWorkSchedule responses: 200: description: The created resources schema: type: array items: #/definitions/clockingEventOfWorkSchedule 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: parentId in: path required: true type: string – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/clockingEventOfWorkSchedule 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/workSchedules/{parentId}/clockingEventOfWorkSchedule/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/clockingEventOfWorkSchedule responses: 200: description: Ok schema: #/definitions/clockingEventOfWorkSchedule 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/clockingEventOfWorkSchedule responses: 200: description: Ok schema: #/definitions/clockingEventOfWorkSchedule 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/clockingEventOfWorkSchedule 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/clockingEventOfWorkSchedule/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/clockingEventOfWorkSchedule responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/clockingEventBands: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/clockingEventBands responses: 200: description: The created resource schema: #/definitions/clockingEventBands 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/clockingEventBands responses: 200: description: The created resource schema: #/definitions/clockingEventBands 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/clockingEventBands 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/clockingEventBands/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/clockingEventBands responses: 200: description: Ok schema: #/definitions/clockingEventBands 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/clockingEventBands responses: 200: description: Ok schema: #/definitions/clockingEventBands 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/clockingEventBands 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/workSchedules/{parentId}/clockingEventBands: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: parentId in: path required: true type: string – name: entity in: body required: true schema: type: array items: #/definitions/clockingEventBands responses: 200: description: The created resources schema: type: array items: #/definitions/clockingEventBands 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: parentId in: path required: true type: string – name: entity in: body required: true schema: type: array items: #/definitions/clockingEventBands responses: 200: description: The created resources schema: type: array items: #/definitions/clockingEventBands 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: parentId in: path required: true type: string – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/clockingEventBands 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/workSchedules/{parentId}/clockingEventBands/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/clockingEventBands responses: 200: description: Ok schema: #/definitions/clockingEventBands 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/clockingEventBands responses: 200: description: Ok schema: #/definitions/clockingEventBands 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/clockingEventBands 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/clockingEventBands/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/clockingEventBands responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/publicPlace: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/publicPlace responses: 200: description: The created resource schema: #/definitions/publicPlace 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/publicPlace responses: 200: description: The created resource schema: #/definitions/publicPlace 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/publicPlace 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/publicPlace/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/publicPlace responses: 200: description: Ok schema: #/definitions/publicPlace 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/publicPlace responses: 200: description: Ok schema: #/definitions/publicPlace 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/publicPlace 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/neighborhood/{parentId}/address: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: entity in: body required: true schema: type: array items: #/definitions/publicPlace responses: 200: description: The created resources schema: type: array items: #/definitions/publicPlace 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: entity in: body required: true schema: type: array items: #/definitions/publicPlace responses: 200: description: The created resources schema: type: array items: #/definitions/publicPlace 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/publicPlace 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/neighborhood/{parentId}/address/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/publicPlace responses: 200: description: Ok schema: #/definitions/publicPlace 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/publicPlace responses: 200: description: Ok schema: #/definitions/publicPlace 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/publicPlace 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/publicPlace/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/publicPlace responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/licenseInformation: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/licenseInformation responses: 200: description: The created resource schema: #/definitions/licenseInformation 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/licenseInformation responses: 200: description: The created resource schema: #/definitions/licenseInformation 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/licenseInformation 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/licenseInformation/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/licenseInformation responses: 200: description: Ok schema: #/definitions/licenseInformation 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/licenseInformation responses: 200: description: Ok schema: #/definitions/licenseInformation 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/licenseInformation 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/licenseInformation/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/licenseInformation responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/miscellaneousIndication: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/miscellaneousIndication responses: 200: description: The created resource schema: #/definitions/miscellaneousIndication 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/miscellaneousIndication responses: 200: description: The created resource schema: #/definitions/miscellaneousIndication 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/miscellaneousIndication 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/miscellaneousIndication/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/miscellaneousIndication responses: 200: description: Ok schema: #/definitions/miscellaneousIndication 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/miscellaneousIndication responses: 200: description: Ok schema: #/definitions/miscellaneousIndication 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/miscellaneousIndication 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/miscellaneousIndication/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/miscellaneousIndication responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/competencytype: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/competencytype responses: 200: description: The created resource schema: #/definitions/competencytype 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/competencytype responses: 200: description: The created resource schema: #/definitions/competencytype 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/competencytype 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/competencytype/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/competencytype responses: 200: description: Ok schema: #/definitions/competencytype 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/competencytype responses: 200: description: Ok schema: #/definitions/competencytype 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/competencytype 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/competencytype/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/competencytype responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/dismissalReason: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/dismissalReason responses: 200: description: The created resource schema: #/definitions/dismissalReason 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/dismissalReason responses: 200: description: The created resource schema: #/definitions/dismissalReason 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/dismissalReason 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/dismissalReason/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/dismissalReason responses: 200: description: Ok schema: #/definitions/dismissalReason 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/dismissalReason responses: 200: description: Ok schema: #/definitions/dismissalReason 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/dismissalReason 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/dismissalReason/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/dismissalReason responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/dismissalReasonSefip: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/dismissalReasonSefip responses: 200: description: The created resource schema: #/definitions/dismissalReasonSefip 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/dismissalReasonSefip responses: 200: description: The created resource schema: #/definitions/dismissalReasonSefip 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/dismissalReasonSefip 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/dismissalReasonSefip/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/dismissalReasonSefip responses: 200: description: Ok schema: #/definitions/dismissalReasonSefip 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/dismissalReasonSefip responses: 200: description: Ok schema: #/definitions/dismissalReasonSefip 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/dismissalReasonSefip 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/dismissalReason/{parentId}/dismissalReasonSefip: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: entity in: body required: true schema: type: array items: #/definitions/dismissalReasonSefip responses: 200: description: The created resources schema: type: array items: #/definitions/dismissalReasonSefip 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: entity in: body required: true schema: type: array items: #/definitions/dismissalReasonSefip responses: 200: description: The created resources schema: type: array items: #/definitions/dismissalReasonSefip 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/dismissalReasonSefip 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/dismissalReason/{parentId}/dismissalReasonSefip/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/dismissalReasonSefip responses: 200: description: Ok schema: #/definitions/dismissalReasonSefip 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/dismissalReasonSefip responses: 200: description: Ok schema: #/definitions/dismissalReasonSefip 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/dismissalReasonSefip 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/dismissalReasonSefip/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/dismissalReasonSefip responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/dismissalReasonEsocial: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/dismissalReasonEsocial responses: 200: description: The created resource schema: #/definitions/dismissalReasonEsocial 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/dismissalReasonEsocial responses: 200: description: The created resource schema: #/definitions/dismissalReasonEsocial 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/dismissalReasonEsocial 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/dismissalReasonEsocial/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/dismissalReasonEsocial responses: 200: description: Ok schema: #/definitions/dismissalReasonEsocial 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/dismissalReasonEsocial responses: 200: description: Ok schema: #/definitions/dismissalReasonEsocial 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/dismissalReasonEsocial 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/dismissalReason/{parentId}/dismissalReasonEsocial: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: entity in: body required: true schema: type: array items: #/definitions/dismissalReasonEsocial responses: 200: description: The created resources schema: type: array items: #/definitions/dismissalReasonEsocial 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: entity in: body required: true schema: type: array items: #/definitions/dismissalReasonEsocial responses: 200: description: The created resources schema: type: array items: #/definitions/dismissalReasonEsocial 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/dismissalReasonEsocial 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/dismissalReason/{parentId}/dismissalReasonEsocial/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/dismissalReasonEsocial responses: 200: description: Ok schema: #/definitions/dismissalReasonEsocial 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/dismissalReasonEsocial responses: 200: description: Ok schema: #/definitions/dismissalReasonEsocial 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/dismissalReasonEsocial 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/dismissalReasonEsocial/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/dismissalReasonEsocial responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/movimentationreason: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/movimentationreason responses: 200: description: The created resource schema: #/definitions/movimentationreason 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/movimentationreason responses: 200: description: The created resource schema: #/definitions/movimentationreason 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/movimentationreason 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/movimentationreason/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/movimentationreason responses: 200: description: Ok schema: #/definitions/movimentationreason 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/movimentationreason responses: 200: description: Ok schema: #/definitions/movimentationreason 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/movimentationreason 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/movimentationreason/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/movimentationreason responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/organizationalChartStructure: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/organizationalChartStructure responses: 200: description: The created resource schema: #/definitions/organizationalChartStructure 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/organizationalChartStructure responses: 200: description: The created resource schema: #/definitions/organizationalChartStructure 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/organizationalChartStructure 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/organizationalChartStructure/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/organizationalChartStructure responses: 200: description: Ok schema: #/definitions/organizationalChartStructure 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/organizationalChartStructure responses: 200: description: Ok schema: #/definitions/organizationalChartStructure 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/organizationalChartStructure 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/organizationalChartStructure/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/organizationalChartStructure responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/organizationalChartDepartment: get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/organizationalChartDepartment 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/organizationalChartStructure/{parentId}/organizationalChartDepartment: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: parentId in: path required: true type: string – name: entity in: body required: true schema: type: array items: #/definitions/organizationalChartDepartment responses: 200: description: The created resources schema: type: array items: #/definitions/organizationalChartDepartment 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: parentId in: path required: true type: string – name: entity in: body required: true schema: type: array items: #/definitions/organizationalChartDepartment responses: 200: description: The created resources schema: type: array items: #/definitions/organizationalChartDepartment 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: parentId in: path required: true type: string – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/organizationalChartDepartment 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/organizationalChartStructure/{parentId}/organizationalChartDepartment/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/organizationalChartDepartment responses: 200: description: Ok schema: #/definitions/organizationalChartDepartment 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/organizationalChartDepartment responses: 200: description: Ok schema: #/definitions/organizationalChartDepartment 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/organizationalChartDepartment 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/organizationalChartDepartmentHierarchy: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/organizationalChartDepartmentHierarchy responses: 200: description: The created resource schema: #/definitions/organizationalChartDepartmentHierarchy 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/organizationalChartDepartmentHierarchy responses: 200: description: The created resource schema: #/definitions/organizationalChartDepartmentHierarchy 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/organizationalChartDepartmentHierarchy 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/organizationalChartDepartmentHierarchy/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/organizationalChartDepartmentHierarchy responses: 200: description: Ok schema: #/definitions/organizationalChartDepartmentHierarchy 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/organizationalChartDepartmentHierarchy responses: 200: description: Ok schema: #/definitions/organizationalChartDepartmentHierarchy 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/organizationalChartDepartmentHierarchy 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/organizationalChartDepartment/{parentId}/organizationalChartDepartmentHierarchy: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: entity in: body required: true schema: type: array items: #/definitions/organizationalChartDepartmentHierarchy responses: 200: description: The created resources schema: type: array items: #/definitions/organizationalChartDepartmentHierarchy 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: entity in: body required: true schema: type: array items: #/definitions/organizationalChartDepartmentHierarchy responses: 200: description: The created resources schema: type: array items: #/definitions/organizationalChartDepartmentHierarchy 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/organizationalChartDepartmentHierarchy 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/organizationalChartDepartment/{parentId}/organizationalChartDepartmentHierarchy/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/organizationalChartDepartmentHierarchy responses: 200: description: Ok schema: #/definitions/organizationalChartDepartmentHierarchy 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/organizationalChartDepartmentHierarchy responses: 200: description: Ok schema: #/definitions/organizationalChartDepartmentHierarchy 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/organizationalChartDepartmentHierarchy 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/organizationalChartDepartmentHierarchy/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/organizationalChartDepartmentHierarchy responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/revenue: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/revenue responses: 200: description: The created resource schema: #/definitions/revenue 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/revenue responses: 200: description: The created resource schema: #/definitions/revenue 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/revenue 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/revenue/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/revenue responses: 200: description: Ok schema: #/definitions/revenue 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/revenue responses: 200: description: Ok schema: #/definitions/revenue 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/revenue 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/revenue/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/revenue responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/holidayDates: get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/holidayDates 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/holiday/{parentId}/holidayDates: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: parentId in: path required: true type: string – name: entity in: body required: true schema: type: array items: #/definitions/holidayDates responses: 200: description: The created resources schema: type: array items: #/definitions/holidayDates 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: parentId in: path required: true type: string – name: entity in: body required: true schema: type: array items: #/definitions/holidayDates responses: 200: description: The created resources schema: type: array items: #/definitions/holidayDates 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: parentId in: path required: true type: string – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/holidayDates 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/holiday/{parentId}/holidayDates/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/holidayDates responses: 200: description: Ok schema: #/definitions/holidayDates 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/holidayDates responses: 200: description: Ok schema: #/definitions/holidayDates 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/holidayDates 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/holiday: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/holiday responses: 200: description: The created resource schema: #/definitions/holiday 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/holiday responses: 200: description: The created resource schema: #/definitions/holiday 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/holiday 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/holiday/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/holiday responses: 200: description: Ok schema: #/definitions/holiday 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/holiday responses: 200: description: Ok schema: #/definitions/holiday 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/holiday 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/holiday/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/holiday responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/qualification: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/qualification responses: 200: description: The created resource schema: #/definitions/qualification 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/qualification responses: 200: description: The created resource schema: #/definitions/qualification 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/qualification 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/qualification/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/qualification responses: 200: description: Ok schema: #/definitions/qualification 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/qualification responses: 200: description: Ok schema: #/definitions/qualification 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/qualification 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/qualification/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/qualification responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/workshift: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/workshift responses: 200: description: The created resource schema: #/definitions/workshift 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/workshift responses: 200: description: The created resource schema: #/definitions/workshift 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/workshift 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/workshift/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/workshift responses: 200: description: Ok schema: #/definitions/workshift 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/workshift responses: 200: description: Ok schema: #/definitions/workshift 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/workshift 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/workshift/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/workshift responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/workshiftGroup: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/workshiftGroup responses: 200: description: The created resource schema: #/definitions/workshiftGroup 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/workshiftGroup responses: 200: description: The created resource schema: #/definitions/workshiftGroup 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/workshiftGroup 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/workshiftGroup/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/workshiftGroup responses: 200: description: Ok schema: #/definitions/workshiftGroup 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/workshiftGroup responses: 200: description: Ok schema: #/definitions/workshiftGroup 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/workshiftGroup 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/workshiftGroup/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/workshiftGroup responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/workshiftSchedule: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/workshiftSchedule responses: 200: description: The created resource schema: #/definitions/workshiftSchedule 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/workshiftSchedule responses: 200: description: The created resource schema: #/definitions/workshiftSchedule 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/workshiftSchedule 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/workshiftSchedule/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/workshiftSchedule responses: 200: description: Ok schema: #/definitions/workshiftSchedule 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/workshiftSchedule responses: 200: description: Ok schema: #/definitions/workshiftSchedule 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/workshiftSchedule 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/workshiftSchedule/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/workshiftSchedule responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/workshiftClass: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/workshiftClass responses: 200: description: The created resource schema: #/definitions/workshiftClass 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/workshiftClass responses: 200: description: The created resource schema: #/definitions/workshiftClass 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/workshiftClass 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/workshiftClass/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/workshiftClass responses: 200: description: Ok schema: #/definitions/workshiftClass 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/workshiftClass responses: 200: description: Ok schema: #/definitions/workshiftClass 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/workshiftClass 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/workshiftClass/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/workshiftClass responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/automaticWorkScheduleSearch: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/automaticWorkScheduleSearch responses: 200: description: The created resource schema: #/definitions/automaticWorkScheduleSearch 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/automaticWorkScheduleSearch responses: 200: description: The created resource schema: #/definitions/automaticWorkScheduleSearch 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/automaticWorkScheduleSearch 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/automaticWorkScheduleSearch/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/automaticWorkScheduleSearch responses: 200: description: Ok schema: #/definitions/automaticWorkScheduleSearch 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/automaticWorkScheduleSearch responses: 200: description: Ok schema: #/definitions/automaticWorkScheduleSearch 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/automaticWorkScheduleSearch 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/automaticWorkScheduleSearch/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/automaticWorkScheduleSearch responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/meansOfTransport: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/meansOfTransport responses: 200: description: The created resource schema: #/definitions/meansOfTransport 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/meansOfTransport responses: 200: description: The created resource schema: #/definitions/meansOfTransport 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/meansOfTransport 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/meansOfTransport/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/meansOfTransport responses: 200: description: Ok schema: #/definitions/meansOfTransport 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/meansOfTransport responses: 200: description: Ok schema: #/definitions/meansOfTransport 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/meansOfTransport 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/meansOfTransport/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/meansOfTransport responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/workstationGroupProfile: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/workstationGroupProfile responses: 200: description: The created resource schema: #/definitions/workstationGroupProfile 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/workstationGroupProfile responses: 200: description: The created resource schema: #/definitions/workstationGroupProfile 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/workstationGroupProfile 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/workstationGroupProfile/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/workstationGroupProfile responses: 200: description: Ok schema: #/definitions/workstationGroupProfile 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/workstationGroupProfile responses: 200: description: Ok schema: #/definitions/workstationGroupProfile 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/workstationGroupProfile 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/workstationGroupProfile/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/workstationGroupProfile responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/activityfield: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/activityfield responses: 200: description: The created resource schema: #/definitions/activityfield 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/activityfield responses: 200: description: The created resource schema: #/definitions/activityfield 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/activityfield 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/activityfield/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/activityfield responses: 200: description: Ok schema: #/definitions/activityfield 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/activityfield responses: 200: description: Ok schema: #/definitions/activityfield 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/activityfield 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/activityfield/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/activityfield responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/othercompany: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/othercompany responses: 200: description: The created resource schema: #/definitions/othercompany 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/othercompany responses: 200: description: The created resource schema: #/definitions/othercompany 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/othercompany 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/othercompany/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/othercompany responses: 200: description: Ok schema: #/definitions/othercompany 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/othercompany responses: 200: description: Ok schema: #/definitions/othercompany 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/othercompany 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PUBLIC parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/othercompany/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/othercompany responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/transportationVoucherScale: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/transportationVoucherScale responses: 200: description: The created resource schema: #/definitions/transportationVoucherScale 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/transportationVoucherScale responses: 200: description: The created resource schema: #/definitions/transportationVoucherScale 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/transportationVoucherScale 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/transportationVoucherScale/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/transportationVoucherScale responses: 200: description: Ok schema: #/definitions/transportationVoucherScale 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/transportationVoucherScale responses: 200: description: Ok schema: #/definitions/transportationVoucherScale 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/transportationVoucherScale 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/transportationVoucherScale/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/transportationVoucherScale responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/transportationVoucherScaleItem: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/transportationVoucherScaleItem responses: 200: description: The created resource schema: #/definitions/transportationVoucherScaleItem 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/transportationVoucherScaleItem responses: 200: description: The created resource schema: #/definitions/transportationVoucherScaleItem 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/transportationVoucherScaleItem 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/transportationVoucherScaleItem/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/transportationVoucherScaleItem responses: 200: description: Ok schema: #/definitions/transportationVoucherScaleItem 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/transportationVoucherScaleItem responses: 200: description: Ok schema: #/definitions/transportationVoucherScaleItem 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/transportationVoucherScaleItem 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/transportationVoucherScale/{parentId}/transportationVoucherScaleItems: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: entity in: body required: true schema: type: array items: #/definitions/transportationVoucherScaleItem responses: 200: description: The created resources schema: type: array items: #/definitions/transportationVoucherScaleItem 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: entity in: body required: true schema: type: array items: #/definitions/transportationVoucherScaleItem responses: 200: description: The created resources schema: type: array items: #/definitions/transportationVoucherScaleItem 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/transportationVoucherScaleItem 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/transportationVoucherScale/{parentId}/transportationVoucherScaleItems/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/transportationVoucherScaleItem responses: 200: description: Ok schema: #/definitions/transportationVoucherScaleItem 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/transportationVoucherScaleItem responses: 200: description: Ok schema: #/definitions/transportationVoucherScaleItem 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/transportationVoucherScaleItem 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: parentId in: path required: true type: string – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/transportationVoucherScaleItem/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/transportationVoucherScaleItem responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/linePrices: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/linePrices responses: 200: description: The created resource schema: #/definitions/linePrices 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/linePrices responses: 200: description: The created resource schema: #/definitions/linePrices 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/linePrices 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/linePrices/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/linePrices responses: 200: description: Ok schema: #/definitions/linePrices 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/linePrices responses: 200: description: Ok schema: #/definitions/linePrices 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/linePrices 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/linePrices/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/linePrices responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/transportLine: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/transportLine responses: 200: description: The created resource schema: #/definitions/transportLine 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/transportLine responses: 200: description: The created resource schema: #/definitions/transportLine 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/transportLine 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/transportLine/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/transportLine responses: 200: description: Ok schema: #/definitions/transportLine 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/transportLine responses: 200: description: Ok schema: #/definitions/transportLine 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/transportLine 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/transportLine/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/transportLine responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/reportGroup: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/reportGroup responses: 200: description: The created resource schema: #/definitions/reportGroup 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/reportGroup responses: 200: description: The created resource schema: #/definitions/reportGroup 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/reportGroup 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/reportGroup/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/reportGroup responses: 200: description: Ok schema: #/definitions/reportGroup 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/reportGroup responses: 200: description: Ok schema: #/definitions/reportGroup 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/reportGroup 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/reportGroup/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/reportGroup responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/reportGroupItem: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/reportGroupItem responses: 200: description: The created resource schema: #/definitions/reportGroupItem 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/reportGroupItem responses: 200: description: The created resource schema: #/definitions/reportGroupItem 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/reportGroupItem 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/reportGroupItem/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/reportGroupItem responses: 200: description: Ok schema: #/definitions/reportGroupItem 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/reportGroupItem responses: 200: description: Ok schema: #/definitions/reportGroupItem 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/reportGroupItem 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/reportGroupItem/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/reportGroupItem responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/insurance: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/insurance responses: 200: description: The created resource schema: #/definitions/insurance 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/insurance responses: 200: description: The created resource schema: #/definitions/insurance 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/insurance 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/insurance/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/insurance responses: 200: description: Ok schema: #/definitions/insurance 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/insurance responses: 200: description: Ok schema: #/definitions/insurance 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/insurance 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/insurance/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/insurance responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/wagetypeGroup: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/wagetypeGroup responses: 200: description: The created resource schema: #/definitions/wagetypeGroup 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/wagetypeGroup responses: 200: description: The created resource schema: #/definitions/wagetypeGroup 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/wagetypeGroup 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/wagetypeGroup/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/wagetypeGroup responses: 200: description: Ok schema: #/definitions/wagetypeGroup 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/wagetypeGroup responses: 200: description: Ok schema: #/definitions/wagetypeGroup 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/wagetypeGroup 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/wagetypeGroup/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/wagetypeGroup responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/pointEmbarkation: post: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/pointEmbarkation responses: 200: description: The created resource schema: #/definitions/pointEmbarkation 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: entity in: body required: true schema: type: object allOf: – #/definitions/pointEmbarkation responses: 200: description: The created resource schema: #/definitions/pointEmbarkation 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/pointEmbarkation 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/pointEmbarkation/{id}: put: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/pointEmbarkation responses: 200: description: Ok schema: #/definitions/pointEmbarkation 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError patch: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string – name: entity in: body required: true schema: #/definitions/pointEmbarkation responses: 200: description: Ok schema: #/definitions/pointEmbarkation 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok schema: #/definitions/pointEmbarkation 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError delete: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: id in: path required: true type: string responses: 200: description: Ok 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/pointEmbarkation/bulk: post: description: Esta entidade pode ser customizada. tags: – Bulk parameters: – name: entities in: body required: true schema: type: array items: #/definitions/pointEmbarkation responses: 200: description: The bulk creation has created resources 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError /general_register/entities/diseaseICD11: get: description: Esta entidade pode ser customizada. tags: – CRUD x-senior-visibility: PRIVATE parameters: – name: offset in: query type: number – name: size in: query type: number responses: 200: description: Ok schema: type: array items: #/definitions/diseaseICD11 401: description: Invalid Credentials default: description: Error response schema: #/definitions/genericError definitions: heathcheckDTO: description: Status do healthcheck type: string enum: – UP – DOWN workstationGroupType: description: Tipo do posto, define se o posto é do tipo agrupador ou ocupável. (LTIPPOS) type: string enum: – GROUPER – OCCUPIABLE workstationGroupCharacteristicType: description: Define como será o cadastro da característica do posto. (LDEFCAR) type: string enum: – REQUIRED – OPTIONAL – DISABLED transportationVoucherScaleItemType: description: Tipo do item de escala de vale transporte type: string enum: – DAILY_CALCULATION – PER_WEEK – FIXED workScheduleType: description: Regime de jornada type: string enum: – TYPE_1 – TYPE_2 – TYPE_3 – TYPE_4 – TYPE_5 – TYPE_6 – TYPE_7 – TYPE_8 nominationType: description: Tipo de nomeação type: string enum: – NOT_NOMINATION – LAW – DECREE – ORDINANCE – CONTRACT – OTHERS eSocialType: description: Tipo eSocial type: string enum: – NOT_APPLY – WARNING – SUSPENSION – RETIREMENT – SUCCESSION – SALARY_DESCRIPTION – DESABILITY – OTHERS – WORKING_HOUR_REGIMEN – EMPLOYEMENT_CONTRACT_OBSERVATION – AUTHORIZATION_WORK_ELECTRICAL_INSTALLATIONS – OPERATION_EXECUTION_MACHINE_INTERVENTIONS – HOISTING_EQUIPMENT_OPERATOR – TRAININGS_SIMULATED_EXERCISES salaryDescriptionType: description: Descrição do salário type: string enum: – SALARY_START – SALARY_END addressType: description: Tipo de endereço type: string enum: – Others – Airport – Lane – Area – Avenue – Balneary – Block – Field – Farmstead – Cologne – Condominium – Set – District – Terrace – Season – Road – ShantyTown – Farm – Market – Gallery – Granja – Garden – Slope – Lake – Lagoon – Long – Allotment – Hill – Core – Park – Footbridge – Courtyard – Square – Beach – Court – Nook – Residential – Highway – Street – Sector – Site – Bystreet – Excerpt – Clover – Valley – Path – Via – Viaduct – Alley – Village – Access – Camp – LocalAccess – Churchyard – SpecialArea – RightMarginalAvenue – LeftMarginalAvenue – RingRoad – LaterRoadBetween – Artery – High – Shortcut – GreenArea – ContourAvenue – MarginalAvenue – OldAvenue – Alleyway – Hole – Belvedere – Balloon – Blocks – Bulevar – Forest – Boulevard – Low – Pier – Sidewalk – Way – Channel – Chapadao – BicyclePath – CircularRoad – HousingComplex – RoadComplex – Community – Hall – Stream – Contour – Descent – Detour – BetweenBlock – IntermunicipalRoad – Cove – PrivateEntrance – BetweenQuarter – Ladder – Staircase – StateHighway – VicinalRoad – RoadConnection – MunicipalRoad – RoadToSerfdom – OldRoad – LaterRoad – Stadium – Office – PrivateRoad – Parking – Evangelical – Lofty – IndustrialAxis – Railroad – Source – Strong – HousingNucleus – Island – Undetermined – Islet – Window – Lot – Marketplace – Marina – Module – Projection – Mount – RuralNucleus – Knoll – Parallel – Tour – SportsSquare – Stop – RestArea – Tip – Prolonging – CityPark – ResidentialPark – Passage – PedestrianWalkway – UndergroundPassage – Bridge – Port – Fifth – Farms – IntegrationStreet – LinkStreet – PrivateStreet – OldStreet – Branch – Playground – Retreat – Straight – SideStreet – Ramp – RodoRing – Kneecap – PedestrianStreet – Margin – Return – Roundabout – SecondAvenue – Bondage – Uploading – Trench – Terminal – Tunnel – PrivateBystreet – OldBystreet – Unity – CollectorRoad – LocalWay – AccessWay – Ditch – CoastalWay – Expressway – HighRoad – CoastalRoad – Walkway – Variant – Zigzag raisType: description: RAIS type: string enum: – Type_10 – Type_15 – Type_20 – Type_25 – Type_30 – Type_31 – Type_35 – Type_40 – Type_49 – Type_50 – Type_55 – Type_60 – Type_65 – Type_70 – Type_75 – Type_80 – Type_90 – Type_95 – Type_96 – Type_97 situationsType: description: Tipo situação type: string enum: – TYPE_01_WORKING – TYPE_02_VACATION – TYPE_03_AID_DISEASE – TYPE_04_WORK_ACCIDENT – TYPE_05_MILITARY_SERVICE – TYPE_06_MATERNITY_LICENSE – TYPE_07_FIRED – TYPE_08_LICENSE_WITHOUT_PAY – TYPE_09_PAID_BY_COMPANY_LICENSE – TYPE_10_PAID_BY_EMPLOYEE_LICENSE – TYPE_11_PATERNITY_LICENSE – TYPE_12_COLLECTIVE_HOLIDAY – TYPE_13_NOTICE_WORKED – TYPE_14_MEDICAL_LICENSE_PAID_BY_COMPANY – TYPE_15_ABSENCES – TYPE_16_OVERTIME – TYPE_17_TIME_TRACKING – TYPE_18_READINESS – TYPE_19_MATERNITY_LICENSE_INSS – TYPE_20_ASSOCIATION_MANDATE – TYPE_21_USED_VACATION_TAKEN – TYPE_22_RETIREMENT – TYPE_23_WORK_ACCIDENT_LICENSE_PAID_BY_COMPANY – TYPE_24_CITIZEN_COMPANY_MATERNITY – TYPE_99_OTHER – TYPE_25_PROFESSIONAL_QUALIFICATION letterHoursCharacteristicType: description: Letra característica de horas type: string enum: – TYPE_1 – TYPE_2 – TYPE_3 – TYPE_4 – TYPE_5 – TYPE_6 – TYPE_7 – TYPE_8 – TYPE_9 – TYPE_10 – TYPE_11 – TYPE_12 – TYPE_13 – TYPE_14 – TYPE_15 – TYPE_16 – TYPE_17 – TYPE_18 – TYPE_19 – TYPE_20 – TYPE_21 – TYPE_22 – TYPE_23 – TYPE_24 – TYPE_25 – TYPE_26 – TYPE_27 – TYPE_28 – TYPE_29 – TYPE_30 – TYPE_31 – TYPE_32 – TYPE_33 – TYPE_34 – TYPE_35 – TYPE_36 – TYPE_37 – TYPE_38 – TYPE_39 – TYPE_40 – TYPE_41 – TYPE_42 – TYPE_43 – TYPE_44 – TYPE_45 – TYPE_46 – TYPE_47 – TYPE_48 – TYPE_49 – TYPE_50 – TYPE_51 – TYPE_52 – TYPE_53 – TYPE_54 – TYPE_55 – TYPE_56 – TYPE_57 – TYPE_58 – TYPE_59 – TYPE_60 – TYPE_61 – TYPE_62 – TYPE_63 – TYPE_64 – TYPE_65 – TYPE_66 – TYPE_67 – TYPE_68 – TYPE_69 – TYPE_70 – TYPE_71 – TYPE_72 – TYPE_73 – TYPE_74 – TYPE_75 – TYPE_76 – TYPE_77 – TYPE_78 lossHolidayEntitlementType: description: Perde direito de férias type: string enum: – TYPE_1 – TYPE_2 – TYPE_3 – TYPE_4 – TYPE_5 losesDayType: description: Perde dia type: string enum: – TYPE_1 – TYPE_2 – TYPE_3 – TYPE_4 missHolidayType: description: Perde feriado type: string enum: – TYPE_1 – TYPE_2 – TYPE_3 loseSpecialLicenseType: description: Perde licença especial type: string enum: – TYPE_1 – TYPE_2 – TYPE_3 – TYPE_4 – TYPE_5 generateStabilityType: description: Gerar Estabilidade type: string enum: – NO – INITIAL_LEAVE – FINAL_LEAVE – LEAVE_DAYS unionContributionType: description: Descontar contribuição sindical type: string enum: – TYPE_1 – TYPE_2 – TYPE_3 absenteeismType: description: Absenteísmo type: string enum: – TYPE_1 – TYPE_2 – TYPE_3 – TYPE_4 – TYPE_5 stabilityType: description: Tipo estabilidade type: string enum: – TYPE_1 – TYPE_2 – TYPE_3 – TYPE_4 – TYPE_5 – TYPE_6 – TYPE_7 – TYPE_8 – TYPE_9 – TYPE_10 – TYPE_11 – TYPE_12 – TYPE_13 – TYPE_14 – TYPE_15 – TYPE_16 – TYPE_17 – TYPE_18 – TYPE_19 – TYPE_20 – TYPE_21 – TYPE_22 – TYPE_23 – TYPE_24 – TYPE_25 nationalityType: description: Lista de Nacionalidades type: string enum: – BRAZILIAN – NATURALIZED_BRAZILIAN – ARGENTINE – BOLIVIAN – CHILEAN – PARAGUAYAN – URUGUAYAN – VENEZULAN – COLOMBIAN – PERUVIAN – EQUATORIAN – GERMAN – BELGIAN – BRITISH – CANADIAN – SPANISH – NORTH_AMERICAN – FRENCH – SWISS – ITALIAN – HAITIAN – JAPANESE – CHINESE – KOREAN – RUSSIAN – PORTUGUESE – SWENDISH – FINNISH – OTHER_LATIN_AMERICANS – OTHER_ASIANS – BENGALIAN – OTHER_EUROPEAN – GUINEAN – MOROCCAN – CUBAN – SYRIAN – SOUTH_KOREAN – ANGOLAN – CONGOLES – SOUTH_AFRICAN – PAKISTANI – INDIAN – GANES – SENEGALESE – OTHER_AMERICANS – OTHERS temporaryPaymentType: description: Tipo de pagamento de temporários/avulsos type: string enum: – TERMINATION_RECEIPT – MONTHLY_PAYROLL inssRelationship: description: Vínculo INSS type: string enum: – TYPE_1 – TYPE_2 – TYPE_3 – TYPE_4 – TYPE_5 – TYPE_6 – TYPE_7 – TYPE_8 – TYPE_9 appointmentType: description: Tipo nomeação type: string enum: – NOT_APPOINTMENT – LAW – DECREE – ORDINANCE – CONTRACT – OTHERS informationType: description: Tipo da informação type: string enum: – CUMULATIVE – PERCENTAGE – FIXED_PERCENTEGE – DAILY_VALUE – MONTHLY_VALUE indexType: description: Tipo do index type: string enum: – OTHER – UFIR – URV – ITRD – SELIC – CONTRIBUTION_SALARY_CORRECTION – SAVINGS_CORRECTION – CURRENCY attendantType: description: Origem do atendente type: string enum: – INTERNAL – EXTERNAL employeeType: description: Tipo do colaborador type: string enum: – NULL – EMPLOYEE – THIRD – PARTNER documentTypeType: description: Tipo de documento type: string enum: – VOTER_REGISTRATION_CARD – DRIVERS_LICENSE – RESERVIST_CERTIFICATE – CIVIL_CERTIFICATE – PASSPORT – CIVILIAN_IDENTITY_REGISTRY – NATURALIZATION_DECREE – NATIONAL_HEALTH_CARD – DECLARATION_OF_LIVE_BIRTH – PROFESSIONAL_COUNCIL – RG – CPF – DEATH_CERTIFICATE – PROVISION_FUND – SOCIAL_INSURANCE – IDENTIFICATION_DOCUMENT situationCouncilType: description: Situação do registro type: string enum: – DEFINITIVE – PROVISIONAL phoneContactType: description: Tipo de telefone type: string enum: – Personal – Professional – Mobile – BusinessFax – PersonalFax – Other expenseType: description: Tipo de despesa type: string enum: – ADMINISTRATIVE – COMMERCIAL – OPERATIONAL considersOpinionRegularType: description: Considera normal type: string enum: – YES – NO – YES_WITH_RESTRICTIONS opinionUsageType: description: Utilização do parecer type: string enum: – EXAM_RESULT – EXAMINATION_RESULT_OTOSCOPY – OTOSCOPY – ASO – RECRUITMENT – TRAINING – TYPE_OF_LOSS – PORTARIA_19 – CLINICAL_METHOD – METHOD_PEREIRA – METHOD_INSS – DAVIS_E_SILVERMAN_METHOD – FOWLER_METHOD – SUB_NORMALITY – INACTIVE – GENERAL disabilityType: description: Tipo de deficiência e-social type: string enum: – Physical – Hearing – Visual – Mental – Intellectual – Other raisDisabilityType: description: Tipo de deficiência RAIS type: string enum: – DO_NOT_CONSIDER – PHYSICAL – HEARING – VISUAL – MENTAL – MULTIPLE degreeInstructionType: description: Tipo de grau de instrução type: string enum: – Illiterate – ElementarySchoolIncomplete – ElementarySchoolComplete – MiddleSchoolIncomplete – MiddleSchoolComplete – HighSchoolIncomplete – HighSchoolComplete – BachelorIncomplete – BachelorComplete – Postgraduate – Master – Doctoral electronicAddressType: description: Tipo de endereço eletrônico type: string enum: – PHONE – EMAIL – URL – VIDEO – OTHER workShiftShiftType: description: Turno do horário – LTipTur type: string enum: – FIRST – SECOND – THIRD – FOURTH – MIXED – GENERAL workShiftJourneyType: description: Tipo de jornada de horário – LJorHor type: string enum: – ON_ENTER – ON_LEAVE scheduleType: description: Tipo de horário – LTipHor type: string enum: – RIGID – MOBILE – FLEXIBLE – MOBILE_ENTER_EXIT – MOBILE_MEAL – FLEXIBLE_ON_INTERVALS mealTimeType: description: Tipo do cálvulo da refeição móvel – LCRfMov type: string enum: – PROXIMITY_OF_MEAL_TIME – CONSIDER_ALL_INTERVALS missingHoursCalculationType: description: Calcular faltas – LCalFal type: string enum: – AFTER_BUSINESS_TIME – OVER_BUSINESS_TIME accessLevelCalculationType: description: Calculo faixa horária de acesso – LJorAce type: string enum: – STAR_FINISH_SAME_DAY – STAR_FINISH_DIFFERENT_DAY workShifIntervalType: description: Tipo de intervalo da jornada – LTipoIntervaloJornada type: string enum: – INTERVAL_ON_FIXED_WORKSHIFT – INTERVAL_ON_VARIABLE_WORKSHIFT – NO_INTERVAL clockingEventUseType: description: Uso da marcação – LUsoBat type: string enum: – ENTER_LEAVE_REQUIRED – ENTER_LEAVE_NOT_REQUIRED – ENTER_LEAVE_GENERATED – MEAL_REQUIRED – MEAL_NOT_REQUIRED – MEAL_REQUIRED_EXTRA – MEAL_NOT_REQUIRED_DEFINE_TOLERANCE – MEAL_GENERATED – LUNCH_REQUIRED – LUNCH_NOT_REQUIRED – LUNCH_REQUIRED_EXTRA decisionType: description: Tipo de decisão type: string enum: – YES – NO transferReasonType: description: Tipo de transferência type: string enum: – TRANSFER_COMPANY – TRANSFER_COMPANY_BRANCH – NO_REASON_TRANSFER dateDismissalWarningType: description: Tipo data do aviso de rescisão type: string enum: – YES – NO – WARNING_DATE_EQUALS_DISMISSAL indemnifiedDaysType: description: Tipo de dias indenizados type: string enum: – YES – NO – YES_BUT_NOT_SUM – HALF_OF_DAYS reopenedDaysType: description: Tipo dos dias reavidos type: string enum: – YES – NO – YES_WITHOUT_SUM daysInAdvanceType: description: Tipo dos dias antecipados type: string enum: – COMPANY – EMPLOYEE – NO determinedDeadlineType: description: Tipo do prazo determinado type: string enum: – YES – NO warningNoticeType: description: Tipo da contagem do aviso prévio type: string enum: – NOTICE_DAY – AFTER_NOTICE_DAY – AFTER_AVAILABLE_NOTICE_DAY dismissalReasonRaisType: description: Causa de desligamento Rais type: string enum: – TYPE_10 – TYPE_11 – TYPE_12 – TYPE_20 – TYPE_21 – TYPE_22 – TYPE_30 – TYPE_31 – TYPE_32 – TYPE_33 – TYPE_34 – TYPE_40 – TYPE_50 – TYPE_60 – TYPE_62 – TYPE_63 – TYPE_64 – TYPE_70 – TYPE_71 – TYPE_72 – TYPE_73 – TYPE_74 – TYPE_75 – TYPE_76 – TYPE_78 – TYPE_79 – TYPE_80 – TYPE_90 fgtsWithdrawalCodeType: description: Código de saque do FGTS type: string enum: – TYPE_01 – TYPE_02 – TYPE_03 – TYPE_04 – TYPE_05 – TYPE_06 – TYPE_07 – TYPE_10 – TYPE_23 – TYPE_26 – TYPE_27 – TYPE_50 – TYPE_70 – TYPE_80_D – TYPE_80_T – TYPE_81_D – TYPE_81_T – TYPE_82_D – TYPE_82_T – TYPE_86 – TYPE_87_N – TYPE_88 – TYPE_91 – TYPE_92 – TYPE_93 – TYPE_94 – TYPE_95 – TYPE_96 cagedDispenseNoticeType: description: Código para Caged e comunicado de dispensa type: string enum: – TYPE_31 – TYPE_32 – TYPE_40 – TYPE_43 – TYPE_45 – TYPE_50 – TYPE_60 – TYPE_80 – TYPE_90 vacationFractionAndSalaryType: description: Dias antecipados somam na contagem dos avos de férias e 13o salário type: string enum: – NO – END_OF_THE_CONTRACT – INDEMNIFIED_DAYS payFamilySalaryType: description: Pagar salário família? type: string enum: – YES – NO – PROPORTIONAL payFgtsFineOnTerminateType: description: Pagar multa de Fgts na rescisão? type: string enum: – YES_TYPE_01 – YES_TYPE_02 – YES_TYPE_03 – NO pay13IndemnifiedSalaryType: description: Pagar 13o salário indenizado? type: string enum: – NEVER – BIGGER_ZERO – BIGGER_FIFTEEN – CHECK payVacationProportionalType: description: Pagar férias proporcionais? type: string enum: – ALWAYS – CHECK – NO payIndemnifiedDissidioType: description: Pagar indenização mês anterior ao dissídio? type: string enum: – YES_WITH_SUM – YES_WITHOUT_SUM – NO paySpecialLeaveType: description: Pagar licença especial? type: string enum: – NO – JUST_OVERDUE – ALL controlRehireType: description: Controlar recontratação? type: string enum: – YES – NO – DETERMINED_DEADLINE discountTransportationVoucherType: description: Descontar o vale transporte? type: string enum: – NORMAL – INTEGRAL homologNetDismissalCodeType: description: Código de Afastamento HomologNet type: string enum: – HOMOLOG_NET_SJ2 – HOMOLOG_NET_JC2 – HOMOLOG_NET_RA2 – HOMOLOG_NET_RA1 – HOMOLOG_NET_SJ1 – HOMOLOG_NET_FT1 – HOMOLOG_NET_PD0 – HOMOLOG_NET_RI2 – HOMOLOG_NET_CR0 – HOMOLOG_NET_FE2 – HOMOLOG_NET_FE1 – HOMOLOG_NET_FM0 – HOMOLOG_NET_NC0 monthlyBalanceCalculationType: description: Cálculo do Saldo do Mensalista type: string enum: – ACTUAL_DEFINITION – HOMOLOG_NET_DEFINITION directionType: description: Tipo de ordenação type: string enum: – ASC – DESC paymentStartDateType: description: Informar início da contagem da data do pagament type: string enum: – AFTER_RESIGNATION – RESIGNATION_DAY eSocialDismissalType: description: Tipo do desligamento type: string enum: – TYPE_1 – TYPE_2 – TYPE_3 – TYPE_4 – TYPE_5 – TYPE_6 – TYPE_7 – TYPE_8 – TYPE_9 – TYPE_10 – TYPE_11 – TYPE_12 – TYPE_13 – TYPE_14 – TYPE_15 – TYPE_16 – TYPE_17 – TYPE_18 – TYPE_19 – TYPE_20 – TYPE_21 – TYPE_22 – TYPE_23 – TYPE_24 – TYPE_25 – TYPE_26 – TYPE_27 – TYPE_28 – TYPE_29 – TYPE_30 – TYPE_31 – TYPE_32 – TYPE_33 – TYPE_34 – TYPE_35 – TYPE_99 – TYPE_36 directorDismissalReasonType: description: Causa da demissão de diretor type: string enum: – TYPE_1 – TYPE_2 – TYPE_3 – TYPE_4 – TYPE_5 – TYPE_6 – TYPE_99 reasonType: description: Tipo motivo type: string enum: – LEGAL – SPONTANEOUS alteredReasonType: description: Tipo da alteração do cargo e/ou função type: string enum: – NOT_APPLICABLE – PROMOTION – READAPTATION – EXPLOITATION – OTHER – NOT_CHANGED movimentationReasonType: description: Tipo da razão de movimentação type: string enum: – HIRE – MERIT – REALLOCATION – PROMOTION movementSefipType: description: Tipo de Movimento SEFIP type: string enum: – H – I1 – I2 – I3 – I4 – I5 – J – K – L – M – N1 – N2 – N3 – O1 – O2 – O3 – P1 – P2 – P3 – Q1 – Q2 – Q3 – Q4 – Q5 – Q6 – R – S2 – S3 – U1 – U2 – U3 – V3 – W – X – Y – Z1 – Z2 – Z3 – Z4 – Z5 – Z6 dayOfWeakType: description: Dias da semana type: string enum: – SUNDAY – MONDAY – TUESDAY – WEDNESDAY – THURSDAY – FRIDAY – SATURDAY workshiftType: description: Tipo de escala type: string enum: – PERMANENT – AUTOMATIC_SEARCH – DEFINED – AUTOMATIC_GENERATION – INTERMITTENT holidayType: description: Tipos de Feriados type: string enum: – OWN – BRANCH – LOCAL – NONE workshiftScaleType: description: Turnos da Escala type: string enum: – FIRST_SHIFT – SECOND_SHIFT – THIRD_SHIFT – FOURTH_SHIFT – MIXED – GENERAL clockingEventOnDayOffType: description: Marcações na Folga type: string enum: – NOT_CONSIDER – LOCK_LIKE_PREVIOUS – LOCK_LIKE_NEXT projectWorkScheduleOnDayOffType: description: Projetar Horário em Dias de Folga type: string enum: – NOT_DESIGN – DESIGN_LIKE_PREVIOUS – DESIGN_LIKE_NEXT automaticSearchType: description: Tipo da Busca Automática type: string enum: – BY_HIGHER_NUMBER_WORKED_HOURS – BY_HIGHER_PERCENT_WORKED_HOURS – BY_FIRST_CLOCKINGEVENT_ON_DAY – BY_FIRST_CLOCKINGEVENT_ON_DAY_WITH_TOLERANCE inBetweenWorkdaysConsistencyType: description: Consistência Interjornada type: string enum: – ALERT – BLOCK – IGNORE handleWorkType: description: Tratar Trabalho type: string enum: – FIXED_WORK_SCHEDULE – SEQUENCE_WORK_SCHEDULE eSocialWorkShiftType: description: Tipo de Jornada para o eSocial type: string enum: – DAILY_WORKS_SCHEDULE_FIXED_DAY_OFF – WORK_SHIFT_12_36 – DAILY_WORKS_SCHEDULE_VARIANT_DAY_OFF – OTHER_TYPES – NOT_ESOCIAL_OTHER_TYPES transportPassType: description: Tipo do passe de transporte type: string enum: – MULTIPLE – FACE_VALUE – SINGLE paymentDateCountingStartType: description: Tipos de início da contagem da data do pagamento type: string enum: – AFTER_DISMISSAL_DATE – DISMISSAL_DATE subscriptionType: description: Tipo da inscrição type: string enum: – EMPTY – CNPJ – CEI – CPF – INCRA discountType: description: Tipo de Desconto type: string enum: – NOT_DISCOUNT – TRANSPORTATION_VOUCHERS – PRIVATE_TRANSPORTATION supplierType: description: Tipo de fornecedor type: string enum: – TYPE_0 – TYPE_1 – TYPE_2 – TYPE_3 – TYPE_4 – TYPE_5 – TYPE_6 – TYPE_7 – TYPE_9 diseaseICD11ItemType: description: Tipo do Item da Doença CID11 type: string enum: – CHAPTER – BLOCK – CATEGORY userNotificationKind: description: User notification kind. type: string enum: – Operational – Management – News userNotificationPriority: description: User notification priority. type: string enum: – Error – Alert – None eventEmailFormat: description: Format of the email type: string enum: – HTML – PLAIN_TEXT fieldType: description: type: string enum: – BINARY – BOOLEAN – DATE – DATETIME – LOCALDATETIME – DOUBLE – ENUM – INTEGER – MONEY – STRING – TIME fileFormat: description: type: string enum: – CSV – FLAT – JSON – XML hookFunction: description: type: string enum: – BEFORE_PARSE – BEFORE_CONVERSION – ON_ERROR – VALIDATE eventType: description: type: string enum: – CHUNK – DOWNLOAD – ERROR – FINISH – START errorStrategy: description: type: string enum: – CALL_SCRIPT – IGNORE – STOP status: description: type: string enum: – DONE – DONE_WITH_ERRORS – DOWNLOADING – ERROR – NOT_STARTED – RUNNING errorType: description: type: string enum: – CONVERT_ERROR – SERVICE_ERROR 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 autocompleteFilter: description: DTO com informações do lookup type: object required: – text – value properties: text: type: string description: Texto a ser apresentado value: type: string description: Valor armazenado no filtro translateRecord: description: DTO registro Traduzivel type: object required: – nameField – value – locale properties: nameField: type: string description: Coluna traduzível value: type: string description: Valor da coluna locale: type: string description: Liguagem employmentRelationshipDTO: description: DTO do Vínculo para evento de atualização type: object required: – externalId – translateRecords properties: externalId: type: string maxLength: 32 description: Identificador único externo. translateRecords: type: array items: type: object allOf: – #/definitions/translateRecord minimum: 1 description: Nome. code: type: integer format: int64 description: Código. workshiftDTO: description: DTO da escala de trabalho type: object required: – id – translateRecords properties: id: type: string maxLength: 32 description: Identificador único externo. shift: type: integer format: int64 description: Turno. code: type: integer format: int64 description: Código. translateRecords: type: array items: type: object allOf: – #/definitions/translateRecord minimum: 1 description: Registros traduzíveis. enumInformationData: description: DTO de lista com as enumerações traduzidas type: object required: – enumName – items properties: enumName: type: string description: Nome da enumeração items: type: array items: type: object allOf: – #/definitions/enumInformationItemData minimum: 1 description: Lista com os items das enumerações enumInformationItemData: description: DTO de lista com os items das enumerações type: object required: – key – value properties: key: type: string description: Chave do item da enumeração value: type: string description: Valor traduzido do item da enumeração paged: description: Retorno paginado discriminator: _discriminator type: object required: – totalElements – numberPages – _discriminator properties: totalElements: type: integer format: int64 description: Indica quantos registros foram encontrados numberPages: type: integer format: int64 description: Indica o número de páginas da consulta (incluindo a atual) _discriminator: type: string description: pagination: description: Dados da paginação type: object required: – current – size properties: current: type: integer format: int64 description: Página de inicio size: type: integer format: int64 description: Quantidade de páginas orderBy: type: array items: type: object allOf: – #/definitions/ordination description: Ordenar por ordination: description: Dados da ordenação type: object required: – field properties: field: type: string description: Campo que será ordenado direction: type: string allOf: – #/definitions/directionType description: Tipo da ordenação miscellaneousIndicationData: description: CARD com os dados de assinalamentos e proprietária type: object required: – epidemiologicalNexusControl – hcmRpo – hcmRre – hcmRub properties: epidemiologicalNexusControl: type: boolean description: Controla Nexo Epidemiológico hcmRpo: type: string allOf: – #/definitions/decisionType description: Possui Ronda Ponto hcmRre: type: string allOf: – #/definitions/decisionType description: Possui Ronda Ponto e Refeitório hcmRub: type: string allOf: – #/definitions/decisionType description: Possui Rubi – Administração de Pessoal pagedEmployeeResultData: description: Dados de retorno paginado da consulta de colaboradores allOf: – #/definitions/paged – type: object required: – contents properties: contents: type: array items: type: object allOf: – #/definitions/employeeResultData minimum: 1 description: Colaboradores employeeResultData: description: DTO com os dados da busca de colaboradores allOf: – #/definitions/paged – type: object required: – id – registernumber – person – employer – employeeType properties: id: type: string description: Id do colaborador registernumber: type: integer format: int64 description: Código do colaborador person: type: object allOf: – #/definitions/personResultData description: Dados da pessoa employer: type: object allOf: – #/definitions/companyResultData description: Nome da empresa employeeType: type: string allOf: – #/definitions/employeeType description: Tipo do colaborador pisNumber: type: string description: Número do documento PIS personResultData: description: DTO com os dados da busca de pessoa type: object required: – id – name – cpf properties: id: type: string description: Id da pessoa name: type: string description: Nome da pessoa cpf: type: string description: Número de CPF companyResultData: description: DTO com os dados da busca de empresa type: object required: – id – code – companyname properties: id: type: string description: Id da empresa code: type: integer format: int64 description: Código da empresa companyname: type: string description: Nome da empresa organizationalChartDepartmentHierarchyData: description: DTO com as hierarquias de uma estrutura organizacional type: object required: – name – code – label – position – selectable – children properties: name: type: string description: Nome code: type: string description: Código label: type: string description: Label position: type: string description: Posição selectable: type: boolean description: Selecionável children: type: array items: type: object allOf: – #/definitions/organizationalChartDepartmentHierarchyData minimum: 1 description: Filhos da hierarquia period: description: Período com data inicial e final type: object properties: initialDate: type: string format: date description: Data inicial do período endDate: type: string format: date description: Data final do período nextPeriod: type: object allOf: – #/definitions/period description: Próximo período prevPeriod: type: object allOf: – #/definitions/period description: Período anterior resultBaseData: description: Retorno base para os endpoints discriminator: _discriminator type: object required: – ok – _discriminator properties: ok: type: boolean description: Flag para indicar sucesso warning: type: boolean description: Flag para indicar sucesso com alerta default: false message: type: string description: Mensagem de retorno default: _discriminator: type: string description: autocompleteResultFields: description: Campos para o retorno do autocomplete type: object required: – name – value properties: name: type: string description: Nome do campo de retorno value: type: string description: Valor do campo de retorno autocompleteResult: description: Retorno autocomplete allOf: – #/definitions/resultBaseData – type: object required: – tableId – fields properties: tableId: type: string description: Id do registro pesquisado fields: type: array items: type: object allOf: – #/definitions/autocompleteResultFields minimum: 1 description: Descrição do registro pesquisado integrationSaveBatchData: description: DTO com para integração em lotes type: object required: – id – success – errorMessage properties: id: type: string description: Id da entidade success: type: boolean description: Informa se a ação foi realizada com sucesso errorMessage: type: string description: Mensagem de erro issueReportGroupItemData: description: Dados de entrada para emissão de items de grupo de modelo type: object required: – reportGroupItemId – showEntrance properties: reportGroupItemId: type: string maxLength: 32 description: Id do item de Grupos de modelo showEntrance: type: boolean description: Apresentar tela de entrada issueReportGroupReturn: description: Dados de saída para emissão de items de grupo de modelo type: object required: – reportUrl properties: reportUrl: type: array items: type: string minimum: 1 description: URL de execução do relatório registrationCodeAdditionalValidationFieldData: description: Dados referentes type: object required: – key – value properties: key: type: string description: Atributo adicional subkey: type: string description: Atributo do atributo value: type: string description: Valor do atributo religion: description: Religião type: object required: – code – name properties: id: type: string maxLength: 32 description: Id da religião code: type: integer format: int64 description: Código da religião minimum: 1 maximum: 999 name: type: string maxLength: 30 description: Descrição da religião x-i18n: true translations: type: object properties: locale: type: object properties: name: type: string maxLength: 30 example: pt-BR: name: Exemplo de texto usando locale pt-BR. en-US: name: Text example using en-US locale. bank: description: Banco type: object required: – code – name properties: id: type: string maxLength: 32 description: Id do banco code: type: integer format: int64 description: Número do banco minimum: 1 maximum: 9999 name: type: string maxLength: 30 description: Descrição x-i18n: true bankBranches: type: array items: type: object allOf: – #/definitions/bankBranch description: Lista de agencias translations: type: object properties: locale: type: object properties: name: type: string maxLength: 30 example: pt-BR: name: Exemplo de texto usando locale pt-BR. en-US: name: Text example using en-US locale. bankBranch: description: Agência bancária type: object required: – code – name – city properties: id: type: string maxLength: 32 description: Id da agência code: type: integer format: int64 description: Número da agência minimum: 1 maximum: 99999 name: type: string maxLength: 30 description: Nome da agência x-i18n: true bank: type: object allOf: – #/definitions/bank description: Relacionamento com banco city: type: object allOf: – #/definitions/city description: Cidade digit: type: string maxLength: 2 description: Dígito da agência translations: type: object properties: locale: type: object properties: name: type: string maxLength: 30 example: pt-BR: name: Exemplo de texto usando locale pt-BR. en-US: name: Text example using en-US locale. country: description: País type: object required: – code – name properties: id: type: string maxLength: 32 description: Id do país code: type: integer format: int64 description: Código do País minimum: 1 maximum: 9999 name: type: string maxLength: 40 description: Nome do país x-i18n: true abbreviation: type: string maxLength: 2 description: Abreviação do nome do país staties: type: array items: type: object allOf: – #/definitions/state description: Estados codeRfb: type: integer format: int64 description: Código RFB do País minimum: 1 maximum: 99999 currency: type: object allOf: – #/definitions/currency description: Código da moeda padrão do País externalId: type: string description: Id de sistema externo translations: type: object properties: locale: type: object properties: name: type: string maxLength: 40 example: pt-BR: name: Exemplo de texto usando locale pt-BR. en-US: name: Text example using en-US locale. state: description: Estado type: object required: – name properties: id: type: string maxLength: 32 description: Id do estado name: type: string description: Nome do Estado x-i18n: true abbreviation: type: string maxLength: 4 description: Abreviação do nome do Estado cities: type: array items: type: object allOf: – #/definitions/city description: Cidades countryId: type: object allOf: – #/definitions/country description: País do estado externalId: type: string description: Id de sistema externo translations: type: object properties: locale: type: object properties: name: type: string example: pt-BR: name: Exemplo de texto usando locale pt-BR. en-US: name: Text example using en-US locale. city: description: Cidade type: object required: – code – name properties: id: type: string maxLength: 32 description: Id da cidade code: type: integer format: int64 description: Código da cidade minimum: 1 maximum: 9999999 name: type: string maxLength: 30 description: Nome da cidade x-i18n: true district: type: string maxLength: 50 description: Distrito ibgeCode: type: string maxLength: 12 description: Código IBGE do município issPercentage: type: number format: double description: Percentual de ISS minimum: 0 maximum: 999.99 stateId: type: object allOf: – #/definitions/state description: Estado da cidade neighborhood: type: array items: type: object allOf: – #/definitions/neighborhood description: Bairros externalId: type: string description: Id de sistema externo translations: type: object properties: locale: type: object properties: name: type: string maxLength: 30 example: pt-BR: name: Exemplo de texto usando locale pt-BR. en-US: name: Text example using en-US locale. annotationtype: description: Tipo de anotação type: object required: – code – name – showinadmissioncard – usesTransfers – appointmentType properties: id: type: string maxLength: 32 description: Id do tipo da anotação code: type: integer format: int64 description: Código do tipo de anotação minimum: 1 maximum: 999 name: type: string description: Descrição do tipo x-i18n: true showinadmissioncard: type: boolean description: Se mostra na admissão workScheduleType: type: string allOf: – #/definitions/workScheduleType description: Regime de jornada eSocialType: type: string allOf: – #/definitions/eSocialType description: Tipo eSocial salaryDescriptionType: type: string allOf: – #/definitions/salaryDescriptionType description: Descrição do salário pregnantApprenticeType: type: boolean description: Aprendiz grávida usesTransfers: type: boolean description: Uso transferências appointmentType: type: string allOf: – #/definitions/appointmentType description: Tipo nomeação translations: type: object properties: locale: type: object properties: name: type: string example: pt-BR: name: Exemplo de texto usando locale pt-BR. en-US: name: Text example using en-US locale. neighborhood: description: Bairro type: object required: – code – name – cep properties: id: type: string maxLength: 32 description: Id do bairro code: type: integer format: int64 description: Código do bairro minimum: 1 maximum: 9999 name: type: string maxLength: 40 description: Nome do bairro city: type: object allOf: – #/definitions/city description: Cidade do bairro cep: type: string maxLength: 8 description: CEP administrativeRegion: type: object allOf: – #/definitions/administrativeregion description: Região administrativa address: type: array items: type: object allOf: – #/definitions/publicPlace description: Logradouros externalId: type: string description: Id de sistema externo caste: description: Castas type: object required: – code – name properties: id: type: string maxLength: 32 description: Id da entidade code: type: integer format: int64 description: Código da casta maximum: 999 name: type: string maxLength: 50 description: Descrição da casta x-i18n: true translations: type: object properties: locale: type: object properties: name: type: string maxLength: 50 example: pt-BR: name: Exemplo de texto usando locale pt-BR. en-US: name: Text example using en-US locale. address: description: Endereço type: object required: – addresstype – postalcode – address – number properties: id: type: string maxLength: 32 description: Id do endereço addresstype: type: string allOf: – #/definitions/addressType description: Tipo do endereço postalcode: type: string description: Código postal do endereço neighborhoodId: type: object allOf: – #/definitions/neighborhood description: Bairro/Distrito a qual pertence este endereço, relacionamento com a tabela de bairros address: type: string description: Endereço number: type: string description: Número do endereço additional: type: string description: Informação adicional referente ao endereço updatedate: type: string format: date description: Data de alteração do endereço administrativeregion: description: Região administrativa type: object required: – code – city – name properties: id: type: string maxLength: 32 description: Id da região administrativa code: type: integer format: int64 description: Código da região minimum: 1 maximum: 99 city: type: object allOf: – #/definitions/city description: Relacionamento com cidade name: type: string maxLength: 40 description: Nome da região administrativa x-i18n: true translations: type: object properties: locale: type: object properties: name: type: string maxLength: 40 example: pt-BR: name: Exemplo de texto usando locale pt-BR. en-US: name: Text example using en-US locale. employmentRelationship: description: Vínculo type: object required: – code – name – rais properties: id: type: string maxLength: 32 description: Id do vínculo code: type: integer format: int64 description: Código do vínculo minimum: 1 maximum: 99 name: type: string description: Descrição do vínculo x-i18n: true rais: type: string allOf: – #/definitions/raisType description: Código da RAIS paymentRelationship: type: object allOf: – #/definitions/paymentRelationship description: Pagamentos benefitRelationship: type: object allOf: – #/definitions/benefitRelationship description: Benefícios personalBoardRelationship: type: object allOf: – #/definitions/personalBoardRelationship description: Quadro de vagas translations: type: object properties: locale: type: object properties: name: type: string example: pt-BR: name: Exemplo de texto usando locale pt-BR. en-US: name: Text example using en-US locale. paymentRelationship: description: Vínculo aba pagamentos type: object required: – payrollCalculation – cagedAccount – vacationPeriod – vacationProvision – partialTimeContract – homeOffice – abroadProvidence properties: id: type: string maxLength: 32 description: Id dos pagamentos payrollCalculation: type: boolean description: Calcular folha cagedAccount: type: boolean description: Conta CAGED temporaryVacationPayment: type: string allOf: – #/definitions/temporaryPaymentType description: Pagamento de férias temporários/avulsos temporaryThirteenthSalary: type: string allOf: – #/definitions/temporaryPaymentType description: 13 salário temporário/avulso inssRelationship: type: string allOf: – #/definitions/inssRelationship description: Vínculo INSS vacationPeriod: type: boolean description: Indicar se devem ser gerador períodos de férias vacationProvision: type: boolean description: Indicar se devem ser calculadas as provisões de férias partialTimeContract: type: boolean description: Contrato a tempo parcial homeOffice: type: boolean description: Indicar se o vínculo refere-se a um regime de teletrabalho abroadProvidence: type: boolean description: Indica se o vínculo considera previdência no exterior employmentRelationship: type: object allOf: – #/definitions/employmentRelationship description: Vínculo benefitRelationship: description: Vínculo aba benefícios type: object required: – transportationVoucher properties: id: type: string maxLength: 32 description: Id dos benefícios transportationVoucher: type: boolean description: Indica se devem ser gerados vale transporte employmentRelationship: type: object allOf: – #/definitions/employmentRelationship description: Vínculo personalBoardRelationship: description: Vínculo aba quadro de vagas type: object required: – vacancyType properties: id: type: string maxLength: 32 description: Id do quadro de vagas vacancyType: type: boolean description: Tipo de vaga employmentRelationship: type: object allOf: – #/definitions/employmentRelationship description: Vínculo structure: description: Estruturas type: object required: – code – name properties: id: type: string maxLength: 32 description: Id da estrutura code: type: integer format: int64 description: Código da estrutura minimum: 1 maximum: 9999 name: type: string maxLength: 50 description: Descrição da estrutura x-i18n: true translations: type: object properties: locale: type: object properties: name: type: string maxLength: 50 example: pt-BR: name: Exemplo de texto usando locale pt-BR. en-US: name: Text example using en-US locale. currency: description: Moeda type: object required: – code properties: id: type: string maxLength: 32 description: Id da moeda code: type: string maxLength: 3 description: Código da moeda name: type: string maxLength: 30 description: Nome symbol: type: string maxLength: 4 description: Símbolo conversionRates: type: array items: type: object allOf: – #/definitions/conversionRates description: Índices de conversão financialIndex: description: Índice type: object required: – code – name – informationType – indexType – numberOfDigits – numberOfDecimals properties: id: type: string maxLength: 32 description: Id do índice code: type: integer format: int64 description: Código do índice minimum: 1 maximum: 999 name: type: string description: Nome do índice informationType: type: string allOf: – #/definitions/informationType description: Tipo informação indexType: type: string allOf: – #/definitions/indexType description: Tipo do índice numberOfDigits: type: integer format: int64 description: Quantidade de dígitos minimum: 1 maximum: 8 numberOfDecimals: type: integer format: int64 description: Quantidade de decimais minimum: 1 maximum: 8 indexValue: type: array items: type: object allOf: – #/definitions/indexValue description: Índices – Valores indexValue: description: Índices – Valores type: object required: – referenceDate – indexValue properties: id: type: string maxLength: 32 description: Id de índices – Valores referenceDate: type: string format: date description: Data de referência indexValue: type: number format: double description: Valor do index financialIndex: type: object allOf: – #/definitions/financialIndex description: Relacionamento com index conversionRates: description: Índices de conversão type: object required: – destinationCurrency – financialIndex properties: id: type: string maxLength: 32 description: Id de índices de conversão originCurrency: type: object allOf: – #/definitions/currency description: Moeda de origem destinationCurrency: type: object allOf: – #/definitions/currency description: Moeda de destino financialIndex: type: object allOf: – #/definitions/financialIndex description: Índice de conversão attendant: description: Atendente Médico type: object required: – code – attendantType – name – pisNumber – recordCouncil properties: id: type: string maxLength: 32 description: Id do atendente code: type: integer format: int64 description: Código do atendente minimum: 1 maximum: 999999 attendantType: type: string allOf: – #/definitions/attendantType description: Origem employee: type: object allOf: – #/definitions/employee description: Colaborador name: type: string maxLength: 70 description: Nome do atendente cpf: type: string description: Número de CPF pisNumber: type: string description: PIS da pessoa professionalCouncil: type: object allOf: – #/definitions/professionalcouncil description: Conselho profissional recordCouncil: type: string maxLength: 20 description: Registro profissional situationCouncilType: type: string allOf: – #/definitions/situationCouncilType description: Situação do registro countrycode: type: integer format: int64 description: Código do país (DDI) minimum: 1 maximum: 999 localcode: type: integer format: int64 description: Código da localidade (DDD) minimum: 1 maximum: 999 number: type: string maxLength: 20 description: Número do telefone employee: description: Colaborador type: object required: – registernumber – person – employeetype – employer – companynumber properties: id: type: string maxLength: 32 description: Id do colaborador registernumber: type: integer format: int64 description: Código do colaborador minimum: 1 maximum: 999999999 person: type: object allOf: – #/definitions/person description: Relacionamento com a pessoa employeetype: type: string allOf: – #/definitions/employeeType description: Tipo do colaborador employer: type: object allOf: – #/definitions/company description: Filial matriz da empresa companynumber: type: integer format: int64 description: Empresa do colaborador company: description: Empresa type: object required: – code – companyname properties: id: type: string maxLength: 32 description: Id da empresa code: type: integer format: int64 description: Código da empresa minimum: 1 maximum: 9999 companyname: type: string description: Nome da empresa headquarter: type: object allOf: – #/definitions/company description: Matriz nis: description: Programa Integração Social (pis) type: object properties: id: type: string maxLength: 32 description: Id do documento number: type: string description: Número do documento registrationdate: type: string format: date description: Data re registro do documento personNis: description: Vínculo da pessoa com PIS type: object required: – id – personId properties: id: type: string description: Relacionamento com pis personId: type: string description: Relacionamento com pessoa person: description: Pessoa type: object required: – firstname – lastname – cpf properties: id: type: string maxLength: 32 description: Id da pessoa firstname: type: string description: Primeiro nome middlename: type: string description: Segundo nome lastname: type: string description: Último nome cpf: type: string description: CPF document: description: Tabela de documento type: object required: – documentNumber – person – documentType properties: id: type: string maxLength: 32 description: Id do documento documentNumber: type: string description: Número do documento person: type: object allOf: – #/definitions/person description: Relacionamento, a pessoa do documento documentType: type: string allOf: – #/definitions/documentTypeType description: Tipo do documento professionalBoardAcronym: description: Sigla conselho profissional type: object required: – code – name properties: id: type: string maxLength: 32 description: Id da sigla conselho profissional code: type: string maxLength: 7 description: Sigla name: type: string maxLength: 30 description: Descrição x-i18n: true translations: type: object properties: locale: type: object properties: name: type: string maxLength: 30 example: pt-BR: name: Exemplo de texto usando locale pt-BR. en-US: name: Text example using en-US locale. professionalcouncil: description: Conselho profissional type: object required: – code – name – headquarter properties: id: type: string maxLength: 32 description: Identificador conselho profissional code: type: integer format: int64 description: Código conselho profissional minimum: 1 maximum: 9999 name: type: string maxLength: 50 description: Descrição conselho profissional x-i18n: true abbreviation: type: string maxLength: 7 description: Abreviação conselho profissional abbreviationId: type: object allOf: – #/definitions/professionalBoardAcronym description: Abreviação conselho profissional headquarter: type: object allOf: – #/definitions/city description: Sede conselho profissional region: type: string maxLength: 6 description: Região conselho profissional translations: type: object properties: locale: type: object properties: name: type: string maxLength: 50 example: pt-BR: name: Exemplo de texto usando locale pt-BR. en-US: name: Text example using en-US locale. apportionment: description: Rateios type: object required: – code – name properties: id: type: string maxLength: 32 description: Id do rateio code: type: integer format: int64 description: Código do rateio minimum: 1 maximum: 999999999 name: type: string maxLength: 80 description: Descrição do rateio x-i18n: true expenseType: type: string allOf: – #/definitions/expenseType description: Tipo de despesa translations: type: object properties: locale: type: object properties: name: type: string maxLength: 80 example: pt-BR: name: Exemplo de texto usando locale pt-BR. en-US: name: Text example using en-US locale. opinion: description: Pareceres type: object required: – code – name – opinionUsageType properties: id: type: string maxLength: 32 description: Id do parecer code: type: integer format: int64 description: Código do parecer minimum: 1 maximum: 999 name: type: string maxLength: 50 description: Descrição do parecer x-i18n: true abbreviatedName: type: string maxLength: 12 description: Descrição abreviada x-i18n: true considersOpinionRegularType: type: string allOf: – #/definitions/considersOpinionRegularType description: Considera normal opinionUsageType: type: string allOf: – #/definitions/opinionUsageType description: Utilização do parecer conductDescription: type: string maxLength: 40 description: Conduta x-i18n: true translations: type: object properties: locale: type: object properties: name: type: string maxLength: 50 abbreviatedName: type: string maxLength: 12 conductDescription: type: string maxLength: 40 example: pt-BR: name: Exemplo de texto usando locale pt-BR.abbreviatedName: Exemplo de texto usando locale pt-BR.conductDescription: Exemplo de texto usando locale pt-BR. en-US: name: Text example using en-US locale.abbreviatedName: Text example using en-US locale.conductDescription: Text example using en-US locale. educationdegree: description: Graus de instrução type: object required: – code – name – nameRais properties: id: type: string maxLength: 32 description: Id do grau de instrução code: type: integer format: int64 description: Código do grau de instrução minimum: 1 maximum: 99 name: type: string maxLength: 30 description: Descrição do grau de instrução x-i18n: true nameRais: type: string allOf: – #/definitions/degreeInstructionType description: Código do grau de instrução RAIS translations: type: object properties: locale: type: object properties: name: type: string maxLength: 30 example: pt-BR: name: Exemplo de texto usando locale pt-BR. en-US: name: Text example using en-US locale. knowledgearea: description: Área de Conhecimento type: object required: – code – name properties: id: type: string maxLength: 32 description: Id da área de conhecimento code: type: integer format: int64 description: Código da área de conhecimento minimum: 1 maximum: 99999999 name: type: string maxLength: 40 description: Descrição da área de conhecimento x-i18n: true externalId: type: string description: Id externo translations: type: object properties: locale: type: object properties: name: type: string maxLength: 40 example: pt-BR: name: Exemplo de texto usando locale pt-BR. en-US: name: Text example using en-US locale. nationality: description: Nacionalidades type: object required: – code – name – nationalityType properties: id: type: string maxLength: 32 description: Id da naciolidade code: type: integer format: int64 description: Código da Nacionalidade minimum: 1 maximum: 999 name: type: string maxLength: 40 description: Descrição da Nacionalidade x-i18n: true nationalityType: type: string allOf: – #/definitions/nationalityType description: Código da Nacionalidade para RAIS countryCodeRfb: type: integer format: int64 description: Código RFB do país minimum: 1 maximum: 99999 externalId: type: string description: Id de sistema externo translations: type: object properties: locale: type: object properties: name: type: string maxLength: 40 example: pt-BR: name: Exemplo de texto usando locale pt-BR. en-US: name: Text example using en-US locale. timetrackingsituation: description: Situações type: object required: – code – name – trackingtype – pay13salary – lossHolidayEntitlementType – missVacationType – losesDsrType – missHolidayType – losesSalaryAdvanceType – calculateDsrteacherType – serviceTimeType – losesTransportTicketType – generateStability – unionContributionType – losesUnionMembershipType – registrationGuideType – statusValidRaisType – returnExamination – absenteeismType – groupDepartureType – controlsExtensions properties: id: type: string maxLength: 32 description: Id da situação code: type: integer format: int64 description: Codigo da situação minimum: 1 maximum: 999 name: type: string maxLength: 30 description: Descrição da situação x-i18n: true abbreviation: type: string maxLength: 4 description: Abreviatura da situação trackingtype: type: string allOf: – #/definitions/situationsType description: Tipo situação situationDaysJustified: type: integer format: int64 description: Situação dias justificados minimum: 1 maximum: 999 letterHoursCharacteristicType: type: string allOf: – #/definitions/letterHoursCharacteristicType description: Letras característica de horas pay13salary: type: string allOf: – #/definitions/decisionType description: Paga 13 salário lossHolidayEntitlementType: type: string allOf: – #/definitions/lossHolidayEntitlementType description: Perda direito de férias missVacationType: type: string allOf: – #/definitions/decisionType description: Perde férias losesDayHourlyType: type: string allOf: – #/definitions/losesDayType description: Perde dia horista losesDayMonthlyType: type: string allOf: – #/definitions/losesDayType description: Perde dia mensalista losesDsrType: type: string allOf: – #/definitions/decisionType description: Perde DSR missHolidayType: type: string allOf: – #/definitions/missHolidayType description: Perde feriado losesSalaryAdvanceType: type: string allOf: – #/definitions/decisionType description: Perde Adto. Salarial loseSpecialLicenseType: type: string allOf: – #/definitions/loseSpecialLicenseType description: Perde licença especial lostYourRetirementType: type: string allOf: – #/definitions/decisionType description: Perde aposentadoria calculateDsrteacherType: type: string allOf: – #/definitions/decisionType description: Calcula DSR Professor serviceTimeType: type: string allOf: – #/definitions/decisionType description: Tempo de serviço losesTransportTicketType: type: string allOf: – #/definitions/decisionType description: Perde vale transporte losesPresenceType: type: string allOf: – #/definitions/decisionType description: Perde assiduidade losesPlrType: type: string allOf: – #/definitions/decisionType description: Perde PLR generateStability: type: string allOf: – #/definitions/generateStabilityType description: Gerar estabilidade stabilityDay: type: number format: double description: Tempo estabilidade minimum: 1 maximum: 9999 stabilityType: type: string allOf: – #/definitions/stabilityType description: Tipo estabilidade maximumStabilityDays: type: integer format: int64 description: Máximo dias estabilidade minimum: 1 maximum: 9999 unionContributionType: type: string allOf: – #/definitions/unionContributionType description: Descontar contribuição sindical losesUnionMembershipType: type: string allOf: – #/definitions/decisionType description: Perde provento sindical registrationGuideType: type: string allOf: – #/definitions/decisionType description: Ficha registro statusValidRaisType: type: string allOf: – #/definitions/decisionType description: Situação válida para RAIS returnExamination: type: boolean description: Exame de retorno absenteeismType: type: string allOf: – #/definitions/absenteeismType description: Absenteísmo isforabsent: type: boolean description: Súmula absenteísmo groupDepartureType: type: string allOf: – #/definitions/decisionType description: Considera afastamento do quadro controlsExtensions: type: string allOf: – #/definitions/decisionType description: Controla prorrogações daysBlockBadge: type: integer format: int64 description: Dias bloquear crachá minimum: 1 maximum: 9 showSituationWorkflowType: type: string allOf: – #/definitions/decisionType description: Mostrar situação workflow translations: type: object properties: locale: type: object properties: name: type: string maxLength: 30 example: pt-BR: name: Exemplo de texto usando locale pt-BR. en-US: name: Text example using en-US locale. disability: description: Tipos de deficiências type: object required: – code – name – type – raisType properties: id: type: string description: Id da deficiência code: type: integer format: int64 description: Código da deficiência minimum: 1 maximum: 99 name: type: string maxLength: 50 description: Nome da deficiência x-i18n: true type: type: string allOf: – #/definitions/disabilityType description: Tipo da deficiência eSocial raisType: type: string allOf: – #/definitions/raisDisabilityType description: Tipo da deficiência RAIS externalId: type: string description: Id de sistema externo translations: type: object properties: locale: type: object properties: name: type: string maxLength: 50 example: pt-BR: name: Exemplo de texto usando locale pt-BR. en-US: name: Text example using en-US locale. documentType: description: Tipos de Documentos type: object required: – code – name properties: id: type: string maxLength: 32 description: Id do tipo de documento code: type: integer format: int64 description: Código do tipo de documento minimum: 1 maximum: 9999 name: type: string maxLength: 50 description: Descrição do tipo de documento x-i18n: true translations: type: object properties: locale: type: object properties: name: type: string maxLength: 50 example: pt-BR: name: Exemplo de texto usando locale pt-BR. en-US: name: Text example using en-US locale. issActivity: description: Atividade de serviço type: object required: – code – name properties: id: type: string maxLength: 32 description: Id da atividade de serviço code: type: integer format: int64 description: Código da atividade de serviço minimum: 1 maximum: 9999 name: type: string maxLength: 60 description: Nome da atividade de serviço x-i18n: true translations: type: object properties: locale: type: object properties: name: type: string maxLength: 60 example: pt-BR: name: Exemplo de texto usando locale pt-BR. en-US: name: Text example using en-US locale. resignationReason: description: Motivos demissão type: object required: – code – name properties: id: type: string maxLength: 32 description: Id do Motivo code: type: integer format: int64 description: Código do Motivo minimum: 1 maximum: 999 name: type: string maxLength: 40 description: Nome do Motivo x-i18n: true translations: type: object properties: locale: type: object properties: name: type: string maxLength: 40 example: pt-BR: name: Exemplo de texto usando locale pt-BR. en-US: name: Text example using en-US locale. dismissalMovimentation: description: Programação de desligamento type: object required: – employee – dateWhen – resignationReason properties: id: type: string maxLength: 32 description: Id da movimentação de desligamento employee: type: object allOf: – #/definitions/employee description: Colaborador dateWhen: type: string format: date description: Data do desligamento resignationReason: type: object allOf: – #/definitions/resignationReason description: Motivo do desligamento cidByCnae: description: CID por CNAE type: object required: – codeCna – startSub – endSub properties: id: type: string maxLength: 32 description: Id do CID por CNAE codeCna: type: integer format: int64 description: Código do CID por CNAE minimum: 1 maximum: 9999 startSub: type: string maxLength: 3 description: Subgrupo Inicial endSub: type: string maxLength: 3 description: Subgrupo Final competencyskillproficiencytable: description: Define a tabela de proficiência. type: object required: – name properties: id: type: string maxLength: 32 description: Id da tabela name: type: string maxLength: 60 description: Nome da tabela description: type: string maxLength: 300 description: Descrição da tabela levels: type: array items: type: object allOf: – #/definitions/competencyskillproficiencylevel description: Níveis de proficiência expenseNature: description: Natureza da despesa type: object required: – code – name properties: id: type: string maxLength: 32 description: Id da natureza da despesa code: type: integer format: int64 description: Código da natureza da despesa minimum: 1 maximum: 99 name: type: string maxLength: 20 description: Nome da natureza da despesa x-i18n: true translations: type: object properties: locale: type: object properties: name: type: string maxLength: 20 example: pt-BR: name: Exemplo de texto usando locale pt-BR. en-US: name: Text example using en-US locale. competencyskillproficiencylevel: description: Define os níveis de proficiência. type: object required: – level – name – initialvalueofscorerange – finalvalueofscorerange – initialpercentageofscorerange – finalpercentageofscorerange – valueofscore properties: id: type: string maxLength: 32 description: Id do nível de proficiência level: type: string maxLength: 10 description: Nível do conceito name: type: string maxLength: 60 description: Nome do conceito description: type: string description: Descrição detalhada do conceito initialvalueofscorerange: type: number format: double description: Valor inicial finalvalueofscorerange: type: number format: double description: Valor final competencyskillproficiencytable: type: object allOf: – #/definitions/competencyskillproficiencytable description: Referência para a tabela de proficiência (mestre) initialpercentageofscorerange: type: number format: double description: Percentual inicial finalpercentageofscorerange: type: number format: double description: Percentual final valueofscore: type: number format: double description: Pontuação do valor icon: type: string maxLength: 32 description: Ícone color: type: string maxLength: 32 description: Cor needjustify: type: boolean description: Necessita adicionar comentário na avaliação ao selecionar este conceito needpdi: type: boolean description: Necessita criar PDI a partir da avaliação por competências ao selecionar este conceito represententiregoal: type: boolean description: Faixa representa 100% issLimit: description: Limite ISS type: object required: – code – name properties: id: type: string maxLength: 32 description: Id do Limite ISS code: type: integer format: int64 description: Código minimum: 1 maximum: 9999 name: type: string maxLength: 30 description: Descrição x-i18n: true exemptionLimit: type: string description: Limite isenção minimum: 0.01 maximum: 999999999.99 translations: type: object properties: locale: type: object properties: name: type: string maxLength: 30 example: pt-BR: name: Exemplo de texto usando locale pt-BR. en-US: name: Text example using en-US locale. electronicAddress: description: Tipos de endereço eletrônico. type: object required: – code – name – electronicAddressType properties: id: type: string maxLength: 32 description: Id do endereço eletrônico code: type: integer format: int64 description: Código do tipo de endereço eletrônico minimum: 1 maximum: 9999 name: type: string maxLength: 60 description: Descrição do tipo de endereço eletrônico x-i18n: true electronicAddressType: type: string allOf: – #/definitions/electronicAddressType description: Tipo de endereço eletrônico translations: type: object properties: locale: type: object properties: name: type: string maxLength: 60 example: pt-BR: name: Exemplo de texto usando locale pt-BR. en-US: name: Text example using en-US locale. disease: description: Doença type: object required: – code – name properties: id: type: string maxLength: 32 description: Identificador code: type: string maxLength: 4 description: Código da Doença name: type: string description: Descrição da doença x-i18n: true translations: type: object properties: locale: type: object properties: name: type: string example: pt-BR: name: Exemplo de texto usando locale pt-BR. en-US: name: Text example using en-US locale. subgroupDisease: description: Subgrupo de Doenças (CID) type: object required: – code – name properties: id: type: string maxLength: 32 description: Identificador code: type: string maxLength: 3 description: Código do Subgrupo de Doenças name: type: string description: Descrição do Subgrupo de Doenças x-i18n: true translations: type: object properties: locale: type: object properties: name: type: string example: pt-BR: name: Exemplo de texto usando locale pt-BR. en-US: name: Text example using en-US locale. workSchedules: description: Horários de trabalho type: object required: – code properties: id: type: string maxLength: 32 description: Identificador code: type: integer format: int64 description: Código do Horário minimum: 1 maximum: 9999 name: type: string maxLength: 30 description: Descrição do Horário structure: type: integer format: int64 description: Estrutura minimum: 0 maximum: 9999 shift: type: integer format: int64 description: Turno minimum: 0 maximum: 9 workShiftJourneyType: type: string allOf: – #/definitions/workShiftJourneyType description: Tipo de Jornada workShiftSeparation: type: integer format: int64 description: Separação de Jornada minimum: 0 maximum: 99999 workShiftFactor: type: integer format: int64 description: Fator de Jornada minimum: 0 maximum: 99999 overtimeMealLimit: type: integer format: int64 description: Limite Extras Refeição minimum: 0 maximum: 99999 overtimeToleranceEnterExit: type: integer format: int64 description: Tolerância Extras Entrada/Saída minimum: 0 maximum: 99999 overtimeToleranceMeal: type: integer format: int64 description: Tolerância de Extras na Refeição minimum: 0 maximum: 99999 dailyMissingHoursTolerance: type: integer format: int64 description: Tolerância diária de faltas minimum: 0 maximum: 99999 missingHoursToleranceEnterExit: type: integer format: int64 description: Tolerância de faltas Entrada/Saída minimum: 0 maximum: 99999 missingHoursToleranceMeal: type: integer format: int64 description: Tolerância de faltas Refeição minimum: 0 maximum: 99999 scheduleType: type: string allOf: – #/definitions/scheduleType description: Tipo de horário mealTimeType: type: string allOf: – #/definitions/mealTimeType description: Cálculo Refeição Móvel hoursDeductProduction: type: integer format: int64 description: Horas a deduzir da Produção minimum: 0 maximum: 999999999 payOvertimeTwelveHours: type: boolean description: Pagar Extras 12 Horas dailyOvertimeTolerance: type: integer format: int64 description: Tolerância diária extras minimum: 0 maximum: 99999 missingHoursCalculationType: type: string allOf: – #/definitions/missingHoursCalculationType description: Calcular faltas accessLevelCalculationType: type: string allOf: – #/definitions/accessLevelCalculationType description: Faixa horária acesso esocialFlexibility: type: boolean description: Flexibilidade eSocial esocialIntervalType: type: string allOf: – #/definitions/workShifIntervalType description: Tipo Intervalo eSocial calculateIndemnifiedInterval: type: boolean description: Calcula intervalo indenizado startIndemnifiedInterval: type: integer format: int64 description: Inicio intervalo indenizado minimum: 0 maximum: 99999 endIndemnifiedInterval: type: integer format: int64 description: Fim intervalo indenizado minimum: 0 maximum: 99999 clockingEventOfWorkSchedule: type: array items: type: object allOf: – #/definitions/clockingEventOfWorkSchedule description: Marcações do horário clockingEventBands: type: array items: type: object allOf: – #/definitions/clockingEventBands description: Faixas de marcação de horário clockingEventOfWorkSchedule: description: Marcações do horário de trabalho type: object required: – clockingEventSequence properties: id: type: string maxLength: 32 description: Identificador workSchedule: type: object allOf: – #/definitions/workSchedules description: Código do horário clockingEventSequence: type: integer format: int64 description: Sequência da marcação minimum: 1 maximum: 99 clockingEventUseType: type: string allOf: – #/definitions/clockingEventUseType description: Uso da marcação clockingEventTime: type: integer format: int64 description: Hora da marcação minimum: 0 maximum: 99999 beforeTolerance: type: integer format: int64 description: Tolerância antes minimum: 0 maximum: 99999 afterTolerance: type: integer format: int64 description: Tolerância depois minimum: 0 maximum: 99999 clockingEventMobility: type: integer format: int64 description: Mobilidade da marcação minimum: 0 maximum: 99999 clockingEventBands: description: Faixas de marcação de horário type: object required: – clockingEventBandSequence properties: id: type: string maxLength: 32 description: Identificador workSchedule: type: object allOf: – #/definitions/workSchedules description: Código do horário clockingEventBandSequence: type: integer format: int64 description: Sequência da faixa de marcação minimum: 0 maximum: 99 startAccessBand: type: integer format: int64 description: Início da faixa Acesso minimum: 0 maximum: 99999 endAccessBand: type: integer format: int64 description: Fim da faixa Acesso minimum: 0 maximum: 99999 startClockingEventBand: type: integer format: int64 description: Início da faixa Ponto minimum: 0 maximum: 99999 endClockingEventBand: type: integer format: int64 description: Fim da faixa Ponto minimum: 0 maximum: 99999 publicPlace: description: Logradouros type: object required: – cep – addressType properties: id: type: string maxLength: 32 description: Identificador cep: type: string description: CEP name: type: string description: Nome do Logradouro addressType: type: string allOf: – #/definitions/addressType description: Tipo do Logradouro neighborhood: type: object allOf: – #/definitions/neighborhood description: Bairro licenseInformation: description: Permissões da Proprietária type: object required: – hcmRpo – hcmRre – hcmRub properties: id: type: string maxLength: 32 description: ID da Licença hcmRpo: type: string allOf: – #/definitions/decisionType description: Ronda Ponto hcmRre: type: string allOf: – #/definitions/decisionType description: Ronda Refeitório hcmRub: type: string allOf: – #/definitions/decisionType description: Rubi – Administração de pessoal miscellaneousIndication: description: Assinalamentos gerais type: object required: – epidemiologicalNexusControl properties: id: type: string maxLength: 32 description: Id do assinalamento epidemiologicalNexusControl: type: boolean description: Controla Nexo Epidemiológico newStructureLocal: type: boolean description: Nova Estrutura de Locais competencytype: description: Tipos de competência type: object required: – name properties: id: type: string maxLength: 32 description: Id do tipo de competência description: type: string maxLength: 2000 description: Descrição do tipo de competência name: type: string maxLength: 60 description: Nome do tipo de competência languagetype: type: boolean description: Informa se o tipo de competência é do tipo linguagem leadershiptype: type: boolean description: Informa se o tipo de competência é do tipo liderança canbeusedonpdi: type: boolean description: Informa se pode ser usada no PDI canbeusedonfeedback: type: boolean description: Informa se pode ser usada no feedback quiz: type: boolean description: Informa se o tipo de competência é do tipo questionário dismissalReason: description: Causa de demissão type: object required: – code – name – checkStability – vacationFractionAndSalaryType – printDispenseNotice – dismissalReasonRaisType – homologNetDismissalCodeType – fgtsWithdrawalCodeType – cagedDispenseNoticeType – payFamilySalaryType – payFgtsOnTermination – payFgtsFineOnTerminateType – pay13ProportionalSalary – pay13IndemnifiedSalaryType – payVacationProportionalType – payBonus – payIndemnifiedDissidioType – paySpecialLeaveType – controlRehireType – otherEvents – spreadWorkflow – considerInTheMovesPortlet – discountTransportationVoucherType – monthlyBalanceCalculation – paymentStartDate – allowsWithdrawalDismissal – paymentDateCountingStart properties: id: type: string maxLength: 32 description: Id da causa code: type: integer format: int64 description: Código da causa minimum: 1 maximum: 999 name: type: string description: Descrição da causa x-i18n: true dateDismissalWarningType: type: string allOf: – #/definitions/dateDismissalWarningType description: Tipo data do aviso de rescisão indemnifiedDaysType: type: string allOf: – #/definitions/indemnifiedDaysType description: Tipo de dias indenizado reopenedDaysType: type: string allOf: – #/definitions/reopenedDaysType description: Tipo dos dias reavidos checkStability: type: boolean description: Checar estabilidade? daysInAdvanceType: type: string allOf: – #/definitions/daysInAdvanceType description: Tipo dos dias antecipados vacationFractionAndSalaryType: type: string allOf: – #/definitions/vacationFractionAndSalaryType description: Dias antecipados somam na contagem dos avos de férias e 13o salário warningNoticeType: type: string allOf: – #/definitions/warningNoticeType description: Tipo da contagem do aviso prévio printDispenseNotice: type: boolean description: Imprimir Comunicado de Dispensa? determinedDeadlineType: type: string allOf: – #/definitions/determinedDeadlineType description: Tipo do prazo determinado (Lei 9601/98) dismissalReasonRaisType: type: string allOf: – #/definitions/dismissalReasonRaisType description: Causa de desligamento RAIS homologNetDismissalCodeType: type: string allOf: – #/definitions/homologNetDismissalCodeType description: Código de Afastamento HomologNet fgtsWithdrawalCodeType: type: string allOf: – #/definitions/fgtsWithdrawalCodeType description: Código de saque do FGTS cagedDispenseNoticeType: type: string allOf: – #/definitions/cagedDispenseNoticeType description: Código para CAGED e Comunicado de Dispensa payFamilySalaryType: type: string allOf: – #/definitions/payFamilySalaryType description: Pagar salário família? payFgtsOnTermination: type: boolean description: Pagar FGTS na rescisão? payFgtsFineOnTerminateType: type: string allOf: – #/definitions/payFgtsFineOnTerminateType description: Pagar multa de FGTS na rescisão? pay13ProportionalSalary: type: boolean description: Pagar 13o salário proporcional? pay13IndemnifiedSalaryType: type: string allOf: – #/definitions/pay13IndemnifiedSalaryType description: Pagar 13o salário indenizado? payVacationProportionalType: type: string allOf: – #/definitions/payVacationProportionalType description: Pagar férias proporcionais? payBonus: type: boolean description: Pagar gratificação? payIndemnifiedDissidioType: type: string allOf: – #/definitions/payIndemnifiedDissidioType description: Pagar indenização mês anterior ao dissídio? paySpecialLeaveType: type: string allOf: – #/definitions/paySpecialLeaveType description: Pagar licença especial? controlRehireType: type: string allOf: – #/definitions/controlRehireType description: Controlar recontratação? otherEvents: type: boolean description: Calcular outros eventos da rescisão? spreadWorkflow: type: boolean description: Divulgar no workflow? daysToLockTheBadge: type: integer format: int64 description: Dias para bloquear o crachá, após demissão minimum: 1 maximum: 9 considerInTheMovesPortlet: type: boolean description: Considerar no portlet de movimentações? discountTransportationVoucherType: type: string allOf: – #/definitions/discountTransportationVoucherType description: Descontar o vale transporte? monthlyBalanceCalculation: type: string allOf: – #/definitions/monthlyBalanceCalculationType description: Calcular Saldo Mensalista paymentStartDate: type: string allOf: – #/definitions/paymentStartDateType description: Informar início da contagem da data do pagamento allowsWithdrawalDismissal: type: boolean description: Permite afastamento de rescisão? transferReasonType: type: string allOf: – #/definitions/transferReasonType description: Tipo de transferência annotationType: type: object allOf: – #/definitions/annotationtype description: Id da anotação dismissalReasonSefip: type: array items: type: object allOf: – #/definitions/dismissalReasonSefip description: Motivo da demissão Sefip dismissalReasonEsocial: type: array items: type: object allOf: – #/definitions/dismissalReasonEsocial description: Causa do desligamento eSocial paymentDateCountingStart: type: string allOf: – #/definitions/paymentDateCountingStartType description: Início contagem data de pagamento translations: type: object properties: locale: type: object properties: name: type: string example: pt-BR: name: Exemplo de texto usando locale pt-BR. en-US: name: Text example using en-US locale. dismissalReasonSefip: description: Motivo da demissão Sefip type: object required: – referenceDate – movementSefipType properties: id: type: string maxLength: 32 description: Id do do motivo referenceDate: type: string format: date description: Data de referência movementSefipType: type: string allOf: – #/definitions/movementSefipType description: Tipo de movimentação Sefip dismissalReason: type: object allOf: – #/definitions/dismissalReason description: Causa da demissão dismissalReasonEsocial: description: Causa do desligamento eSocial type: object required: – referenceDate – eSocialDismissalType – directorDismissalReasonType properties: id: type: string maxLength: 32 description: Id da outra empresa referenceDate: type: string format: date description: Data de referência eSocialDismissalType: type: string allOf: – #/definitions/eSocialDismissalType description: Tipo da movimentação ESocial directorDismissalReasonType: type: string allOf: – #/definitions/directorDismissalReasonType description: Causa da demissão de diretor dismissalReason: type: object allOf: – #/definitions/dismissalReason description: Causa da demissão movimentationreason: description: Motivo de reajuste salarial type: object required: – code – name – reason properties: id: type: string maxLength: 32 description: Id do motivo code: type: integer format: int64 description: Código do motivo minimum: 1 maximum: 999 name: type: string maxLength: 30 description: Nome do motivo x-i18n: true reason: type: string allOf: – #/definitions/reasonType description: Tipo do motivo alteredReasonType: type: string allOf: – #/definitions/alteredReasonType description: Motivo da alteração do cargo e/ou função movimentationReasonType: type: string allOf: – #/definitions/movimentationReasonType description: Tipo da razão de movimentação translations: type: object properties: locale: type: object properties: name: type: string maxLength: 30 example: pt-BR: name: Exemplo de texto usando locale pt-BR. en-US: name: Text example using en-US locale. organizationalChartStructure: description: Estrutura do Organograma type: object required: – code – name properties: id: type: string maxLength: 32 description: Id do Organograma code: type: integer format: int64 description: Código do organograma minimum: 1 maximum: 9999 name: type: string maxLength: 30 description: Nome do organograma x-i18n: true useMask: type: boolean description: Usa Máscara levelEmployee: type: integer format: int64 description: Nível Colaboradores minimum: 0 maximum: 99 levelQL: type: integer format: int64 description: Nível do QL minimum: 0 maximum: 99 levelCompanyBranch: type: integer format: int64 description: Nível Filial minimum: 0 maximum: 99 levelPPRA: type: integer format: int64 description: Nível PPRA/PCMSO minimum: 0 maximum: 99 levelPSS: type: integer format: int64 description: Nível PSS minimum: 0 maximum: 99 organizationalChartDepartment: type: array items: type: object allOf: – #/definitions/organizationalChartDepartment description: Locais do Organograma translations: type: object properties: locale: type: object properties: name: type: string maxLength: 30 example: pt-BR: name: Exemplo de texto usando locale pt-BR. en-US: name: Text example using en-US locale. organizationalChartDepartment: description: Locais do Organograma type: object required: – code properties: id: type: string maxLength: 32 description: Id da entidade organizationalChartStructure: type: object allOf: – #/definitions/organizationalChartStructure description: Organograma code: type: integer format: int64 description: Local minimum: 0 maximum: 999999999 name: type: string maxLength: 255 description: Nome do Local x-i18n: true apportionment: type: object allOf: – #/definitions/apportionment description: Rateio createdDate: type: string format: date description: Data Criação extinctionDate: type: string format: date description: Data Extinção ppp: type: boolean description: Considera PPP organizationalChartDepartmentHierarchy: type: array items: type: object allOf: – #/definitions/organizationalChartDepartmentHierarchy description: Hierarquia dos Locais no Organograma translations: type: object properties: locale: type: object properties: name: type: string maxLength: 255 example: pt-BR: name: Exemplo de texto usando locale pt-BR. en-US: name: Text example using en-US locale. organizationalChartDepartmentHierarchy: description: Hierarquia dos Locais no Organograma type: object properties: id: type: string maxLength: 32 description: Id da entidade organizationalChartDepartment: type: object allOf: – #/definitions/organizationalChartDepartment description: Local initialDate: type: string format: date description: Data Início Hierarquia endDate: type: string format: date description: Data Fim Hierarquia departmentPosition: type: string maxLength: 72 description: Posição do Local departmentCode: type: string maxLength: 150 description: Código do Local revenue: description: Receita type: object required: – code properties: id: type: string maxLength: 32 description: Id da receita code: type: integer format: int64 description: Código da receita minimum: 1 maximum: 9999 name: type: string maxLength: 30 description: Descrição da receita x-i18n: true translations: type: object properties: locale: type: object properties: name: type: string maxLength: 30 example: pt-BR: name: Exemplo de texto usando locale pt-BR. en-US: name: Text example using en-US locale. holidayDates: description: Datas dos Feriados type: object required: – code – holidayDate properties: id: type: string maxLength: 32 description: Id da entidade code: type: integer format: int64 description: Código da Tabela de Feriados minimum: 0 maximum: 9999 holidayDate: type: string format: date description: Data do Feriado name: type: string maxLength: 30 description: Descrição do feriado x-i18n: true giveTramportationVoucher: type: boolean description: Distribuir Vale Transporte dayForWork: type: string allOf: – #/definitions/dayOfWeakType description: Dia da Semana para Serviços holiday: type: object allOf: – #/definitions/holiday description: Relacionamento com Feriados translations: type: object properties: locale: type: object properties: name: type: string maxLength: 30 example: pt-BR: name: Exemplo de texto usando locale pt-BR. en-US: name: Text example using en-US locale. holiday: description: Feriados type: object required: – code properties: id: type: string maxLength: 32 description: Id da entidade code: type: integer format: int64 description: Código Tabela de Feriados minimum: 0 maximum: 9999 name: type: string maxLength: 30 description: Descrição da Tabela de Feriados x-i18n: true holidayDates: type: array items: type: object allOf: – #/definitions/holidayDates description: Datas de feriados translations: type: object properties: locale: type: object properties: name: type: string maxLength: 30 example: pt-BR: name: Exemplo de texto usando locale pt-BR. en-US: name: Text example using en-US locale. qualification: description: Qualificações type: object required: – description properties: id: type: string maxLength: 32 description: Id da qualificação externalId: type: string maxLength: 64 description: Id externo da qualificação code: type: integer format: int64 description: Código da qualificação minimum: 0 maximum: 999 description: type: string maxLength: 60 description: Descrição detalhada da qualificação name: type: string maxLength: 30 description: Descrição reduzida da qualificação x-i18n: true translations: type: object properties: locale: type: object properties: name: type: string maxLength: 30 example: pt-BR: name: Exemplo de texto usando locale pt-BR. en-US: name: Text example using en-US locale. workshift: description: Escala de trabalho type: object required: – code – workshiftType properties: id: type: string maxLength: 32 description: Id da escala code: type: integer format: int64 description: Código da escala minimum: 0 maximum: 9999 description: type: string maxLength: 30 description: Descrição da escala x-i18n: true monthminutes: type: number format: double description: Horas mensais weekminutes: type: number format: double description: Horas semanais dsrminutes: type: number format: double description: Horas DSR workshiftType: type: string allOf: – #/definitions/workshiftType description: Tipo de escala structure: type: string maxLength: 32 description: Estrutura holidayType: type: string allOf: – #/definitions/holidayType description: Tipo de Feriado workshiftScale: type: string allOf: – #/definitions/workshiftScaleType description: Turno da Escala holidayTable: type: object allOf: – #/definitions/holiday description: Tabela de feriados officialHolidayTable: type: object allOf: – #/definitions/holiday description: Tabela de Feriados oficiais clockingEventOnDayOff: type: string allOf: – #/definitions/clockingEventOnDayOffType description: Marcação na Folga workScheduleSeparationOnDayOff: type: number format: double description: Separação de Jornada na Folga projectWorkScheduleOnDayOff: type: string allOf: – #/definitions/projectWorkScheduleOnDayOffType description: Projetar Horários em Dias de Folga automaticSearchType: type: string allOf: – #/definitions/automaticSearchType description: Tipo de Busca Automática inBetweenWorkdaysConsistency: type: string allOf: – #/definitions/inBetweenWorkdaysConsistencyType description: Consistência Interjornada relayTypeForPPPEmissionDescription: type: string maxLength: 30 description: Descrição do tipo de revezamento para emissão do PPP workSchedule: type: object allOf: – #/definitions/workSchedules description: Código do Horário de Trabalho dayOffWorkSchedule: type: object allOf: – #/definitions/workSchedules description: Código do Horário de Folga doubleShiftWorkSchedule: type: object allOf: – #/definitions/workSchedules description: Código do Horário de Turno Duplo handleWork: type: string allOf: – #/definitions/handleWorkType description: Tratar Trabalho eSocialWorkShift: type: string allOf: – #/definitions/eSocialWorkShiftType description: Tipo de jornada para eSocial eSocialWorkShiftDesciption: type: string maxLength: 100 description: Descrição da jornada do eSocial payProportionalextraHoursOnHoliday: type: boolean description: Pagar extras proporcionais no feriado workshiftClass: type: object allOf: – #/definitions/workshiftClass description: Classe da Escala translations: type: object properties: locale: type: object properties: description: type: string maxLength: 30 example: pt-BR: description: Exemplo de texto usando locale pt-BR. en-US: description: Text example using en-US locale. workshiftGroup: description: Turma de escala type: object required: – code – workshift – baseDate properties: id: type: string maxLength: 32 description: Id da turma de escala code: type: integer format: int64 description: Código da turma de escala minimum: 0 maximum: 9999 workshift: type: object allOf: – #/definitions/workshift description: Id da escala (obrigatório) baseDate: type: string format: date description: Data base da turma workshiftSchedule: description: Horário de Escala type: object required: – workshift – registerSequence – workSchedule properties: id: type: string maxLength: 32 description: Id da escala workshift: type: object allOf: – #/definitions/workshift description: Código da escala registerSequence: type: integer format: int64 description: Sequência do Registro minimum: 0 maximum: 999 workSchedule: type: object allOf: – #/definitions/workSchedules description: Código do Horário Base optionalWorkSchedule1: type: integer format: int64 description: Código do Horário Opcional 1 minimum: 0 maximum: 9999 optionalWorkSchedule2: type: integer format: int64 description: Código do Horário Opcional 2 minimum: 0 maximum: 9999 optionalWorkSchedule3: type: integer format: int64 description: Código do Horário Opcional 3 minimum: 0 maximum: 9999 optionalWorkSchedule4: type: integer format: int64 description: Código do Horário Opcional 4 minimum: 0 maximum: 9999 optionalWorkSchedule5: type: integer format: int64 description: Código do Horário Opcional 5 minimum: 0 maximum: 9999 doubleShiftWorkSchedule: type: object allOf: – #/definitions/workSchedules description: Código do Horário de Turno Duplo externalId: type: string description: Id externo workshiftClass: description: Classes de Escala type: object required: – code properties: id: type: string maxLength: 32 description: Id da escala code: type: integer format: int64 description: Código da Classe de Escala minimum: 0 maximum: 99 name: type: string maxLength: 20 description: Descrição da Classe de Escala x-i18n: true relayWorkshift: type: boolean description: Escala de Revezamento translations: type: object properties: locale: type: object properties: name: type: string maxLength: 20 example: pt-BR: name: Exemplo de texto usando locale pt-BR. en-US: name: Text example using en-US locale. automaticWorkScheduleSearch: description: Horários da busca automática type: object required: – workshift – workshiftSchedule – workScheduleregisterSequence – workSchedules properties: id: type: string maxLength: 32 description: Id do Horários da busca automática workshift: type: object allOf: – #/definitions/workshift description: Código do Horários da busca automática workshiftSchedule: type: object allOf: – #/definitions/workshiftSchedule description: Sequência do Registro workScheduleregisterSequence: type: integer format: int64 description: Sequência do Registro de horário minimum: 0 maximum: 999 workSchedules: type: object allOf: – #/definitions/workSchedules description: Código do Horário Opcional meansOfTransport: description: Meio de transporte type: object required: – code – name – transportPassType properties: id: type: string maxLength: 32 description: id do meio de transporte code: type: integer format: int64 description: Código do meio de transporte minimum: 0 maximum: 99 name: type: string maxLength: 15 description: Descrição do meio de transporte x-i18n: true transportPassType: type: string allOf: – #/definitions/transportPassType description: Tipo do passe de transporte translations: type: object properties: locale: type: object properties: name: type: string maxLength: 15 example: pt-BR: name: Exemplo de texto usando locale pt-BR. en-US: name: Text example using en-US locale. workstationGroupProfile: description: Perfil do posto de trabalho.Contém configurações de características de posto.(R017PER) type: object required: – id – code – description – workstationGroupType – companyCharacteristicType – branchCharacteristicType – departmentCharacteristicType – costCenterCharacteristicType – jobPositionCharacteristicType – shiftCharacteristicType – employeeTypeCharacteristicType – employmentRelationshipCharacteristicType – vacancyTypeCharacteristicType – contractTypeCharacteristicType – disabilityCharacteristicType – workshiftCharacteristicType – workshiftGroupCharacteristicType – intervalGroupCharacteristicType – scaleTeamAndScaleCategoryCharacteristicType – workScheduleCharacteristicType – expenseNatureCharacteristicType – projectCharacteristicType – outsourceCharacteristicType – apportionmentCharacteristicType – hierarchyCharacteristicType – isHolder – canHaveAsManyJobsPositions – mustUseWorkshift properties: id: type: string maxLength: 32 description: Identificador do Perfil de posto. code: type: integer format: int64 description: Código do perfil. (PERPOS) description: type: string maxLength: 50 description: Descrição do perfil de posto. (DESPER) workstationGroupType: type: string allOf: – #/definitions/workstationGroupType description: Tipo do posto, define se o posto é do tipo agrupador ou ocupável. (TIPPOS) companyCharacteristicType: type: string allOf: – #/definitions/workstationGroupCharacteristicType description: Define como será o cadastro da característica de empresa do posto. (EMPOBR) branchCharacteristicType: type: string allOf: – #/definitions/workstationGroupCharacteristicType description: Define como será o cadastro da característica de filial do posto. (FILOBR) departmentCharacteristicType: type: string allOf: – #/definitions/workstationGroupCharacteristicType description: Define como será o cadastro da característica de local do posto. (LOCOBR) costCenterCharacteristicType: type: string allOf: – #/definitions/workstationGroupCharacteristicType description: Define como será o cadastro da característica de centro de custo do posto. (CCUOBR) syndicateCharacteristicType: type: string allOf: – #/definitions/workstationGroupCharacteristicType description: Define como será o cadastro da característica de sindicato do posto. (SINOBR) jobPositionCharacteristicType: type: string allOf: – #/definitions/workstationGroupCharacteristicType description: Define como será o cadastro da característica de cargo do posto. (CAROBR) shiftCharacteristicType: type: string allOf: – #/definitions/workstationGroupCharacteristicType description: Define como será o cadastro da característica de turno do posto. (TUROBR) employeeTypeCharacteristicType: type: string allOf: – #/definitions/workstationGroupCharacteristicType description: Define como será o cadastro da característica de tipo colaborador do posto. (TPCOBR) employmentRelationshipCharacteristicType: type: string allOf: – #/definitions/workstationGroupCharacteristicType description: Define como será o cadastro da característica de vínculo do posto. (VINOBR) vacancyTypeCharacteristicType: type: string allOf: – #/definitions/workstationGroupCharacteristicType description: Define como será o cadastro da característica de tipo de vaga do posto. (TPVOBR) contractTypeCharacteristicType: type: string allOf: – #/definitions/workstationGroupCharacteristicType description: Define como será o cadastro da característica de tipo de contrato do posto. (TCOOBR) disabilityCharacteristicType: type: string allOf: – #/definitions/workstationGroupCharacteristicType description: Define como será o cadastro da característica de PcD do posto. (CARPNE) workshiftCharacteristicType: type: string allOf: – #/definitions/workstationGroupCharacteristicType description: Define como será o cadastro da característica de escala do posto. (ESCOBR) workshiftGroupCharacteristicType: type: string allOf: – #/definitions/workstationGroupCharacteristicType description: Define como será o cadastro da característica de turma de escala do posto. (TMAOBR) intervalGroupCharacteristicType: type: string allOf: – #/definitions/workstationGroupCharacteristicType description: Define como será o cadastro da característica de turma de intervalo do posto. (TMIOBR) scaleTeamAndScaleCategoryCharacteristicType: type: string allOf: – #/definitions/workstationGroupCharacteristicType description: Define como será o cadastro da característica de turma de equipe e categoria do posto. (EQPOBR) workScheduleCharacteristicType: type: string allOf: – #/definitions/workstationGroupCharacteristicType description: Define como será o cadastro da característica de horário do posto. (HOROBR) expenseNatureCharacteristicType: type: string allOf: – #/definitions/workstationGroupCharacteristicType description: Define como será o cadastro da característica de natureza despesa do posto. (NATOBR) projectCharacteristicType: type: string allOf: – #/definitions/workstationGroupCharacteristicType description: Define como será o cadastro da característica de projeto/fase do posto. (PRJOBR) outsourceCharacteristicType: type: string allOf: – #/definitions/workstationGroupCharacteristicType description: Define como será o cadastro da característica de tomador do posto. (TOMOBR) apportionmentCharacteristicType: type: string allOf: – #/definitions/workstationGroupCharacteristicType description: Define como será o cadastro da característica de rateio do posto. (RATOBR) hierarchyCharacteristicType: type: string allOf: – #/definitions/workstationGroupCharacteristicType description: Define como será o cadastro da característica de hierarquia do posto. (HIEOBR) isHolder: type: boolean description: Define como se os postos serão titulares. (POSTIT) canHaveAsManyJobsPositions: type: boolean description: Define como se os postos permitirão varios cargos. (PERVCA) mustUseWorkshift: type: boolean description: Define se os cadastros da característica de posto usará escalas de horários. (ESCHOR) activityfield: description: Ramo de Atuação(R032ATU) – ramo de atuação de uma empresa utilizado no cadastro de outras empresas type: object required: – name properties: id: type: string maxLength: 32 description: Id do ramo de atuação externalId: type: string maxLength: 64 description: Id externo do ramo de atuação code: type: integer format: int64 description: Ramo de Atuação minimum: 1 maximum: 99999 name: type: string maxLength: 60 description: Descrição x-i18n: true translations: type: object properties: locale: type: object properties: name: type: string maxLength: 60 example: pt-BR: name: Exemplo de texto usando locale pt-BR. en-US: name: Text example using en-US locale. othercompany: description: Outra empresa type: object required: – name – nickname – subscriptionType – subscriptionNumber – subscriptionNumberCNO – subscriptionNumberCAEPF – startDate – endDate properties: id: type: string maxLength: 32 description: Id da outra empresa name: type: string maxLength: 60 description: Nome da outra empresa x-i18n: true nickname: type: string description: Apelido da outra empresa subscriptionType: type: string allOf: – #/definitions/subscriptionType description: Tipo da inscrição subscriptionNumber: type: integer format: int64 description: Número da inscrição subscriptionNumberCNO: type: integer format: int64 description: Número inscrição CNO subscriptionNumberCAEPF: type: integer format: int64 description: Inscrição no CAEPF (número) startDate: type: string format: date description: Data de inicio da validade endDate: type: string format: date description: Data fim da validade translations: type: object properties: locale: type: object properties: name: type: string maxLength: 60 example: pt-BR: name: Exemplo de texto usando locale pt-BR. en-US: name: Text example using en-US locale. transportationVoucherScale: description: Escala de vale transporte type: object required: – code – name properties: id: type: string maxLength: 32 description: Id da escala de vale transporte code: type: integer format: int64 description: Código da escala de vale transporte name: type: string description: Descrição da escala de vale transporte x-i18n: true transportationVoucherScaleItems: type: array items: type: object allOf: – #/definitions/transportationVoucherScaleItem description: Lista de itens translations: type: object properties: locale: type: object properties: name: type: string example: pt-BR: name: Exemplo de texto usando locale pt-BR. en-US: name: Text example using en-US locale. transportationVoucherScaleItem: description: Item de quantidade do cadastro de escala de vale transporte type: object required: – transportLine – itemType – workingDay – monday – tuesday – wednesday – thursday – friday – saturday – sunday – holiday – dayOff – fixed properties: id: type: string maxLength: 32 description: Id do tem transportLine: type: object allOf: – #/definitions/transportLine description: Relacionamento com a linha de transporte transportationVoucherScale: type: object allOf: – #/definitions/transportationVoucherScale description: Relacionamento com a escala de vale transporte itemType: type: string allOf: – #/definitions/transportationVoucherScaleItemType description: Tipo do item de escala de vale transporte workingDay: type: integer format: int64 description: Passes dia útil minimum: 0 maximum: 99 monday: type: integer format: int64 description: Passes segunda-feira minimum: 0 maximum: 99 tuesday: type: integer format: int64 description: Passes terça-feira minimum: 0 maximum: 99 wednesday: type: integer format: int64 description: Passes quarta-feira minimum: 0 maximum: 99 thursday: type: integer format: int64 description: Passes quinta-feira minimum: 0 maximum: 99 friday: type: integer format: int64 description: Passes sexta-feira minimum: 0 maximum: 99 saturday: type: integer format: int64 description: Passes sábado minimum: 0 maximum: 99 sunday: type: integer format: int64 description: Passes domingo minimum: 0 maximum: 99 holiday: type: integer format: int64 description: Passes dia de feriado minimum: 0 maximum: 99 dayOff: type: integer format: int64 description: Passes dia de folga minimum: 0 maximum: 99 fixed: type: integer format: int64 description: Passes dia fixo minimum: 0 maximum: 999 linePrices: description: Preço das linhas de transporte type: object required: – transportLine – referenceDate properties: id: type: string maxLength: 32 description: Id do preço da linha de transporte transportLine: type: object allOf: – #/definitions/transportLine description: Linha de transporte referenceDate: type: string format: date description: Data de referência costKilometer: type: string description: Custo quilômetro minimum: 0 maximum: 999999999.99 value: type: string description: Valor passe minimum: 0 maximum: 999999999.999 transportLine: description: Linha de transporte(R028LVT) – utilizado para o cadastro de vale transporte type: object required: – code – name – otherCompany – meansOfTransport – discountType – supplierType properties: id: type: string maxLength: 32 description: Id da linha de transporte code: type: integer format: int64 description: Código da linha minimum: 1 maximum: 99999 name: type: string maxLength: 40 description: Nome da linha x-i18n: true otherCompany: type: object allOf: – #/definitions/othercompany description: Empresa de transporte meansOfTransport: type: object allOf: – #/definitions/meansOfTransport description: Meio de transporte discountType: type: string allOf: – #/definitions/discountType description: Tipo de Desconto distance: type: integer format: int64 description: Distância (KM) minimum: 0 maximum: 999 routeNumber: type: string maxLength: 15 description: Número do itinerário nameRoute: type: string maxLength: 29 description: Itinerário supplierType: type: string allOf: – #/definitions/supplierType description: Tipo de fornecedor translations: type: object properties: locale: type: object properties: name: type: string maxLength: 40 example: pt-BR: name: Exemplo de texto usando locale pt-BR. en-US: name: Text example using en-US locale. reportGroup: description: Grupos de modelo (R999GUC) – Cadastro de grupo modelos de relatórios. type: object required: – id – description properties: id: type: string maxLength: 32 description: Identificador description: type: string maxLength: 150 description: Descrição do grupo reportGroupItem: description: Itens de Grupos de modelo (R999GUI) – Cadastro de grupo modelos de relatórios. type: object required: – id – reportGroup – name properties: id: type: string maxLength: 32 description: Identificador reportGroup: type: object allOf: – #/definitions/reportGroup description: Relacionamento com grupos de modelo. name: type: string maxLength: 15 description: Nome do modelo description: type: string maxLength: 150 description: Descriçao do item amountOfCopies: type: integer format: int64 description: Quantidade de cópias minimum: 1 maximum: 999 default: 1 sequence: type: integer format: int64 description: Ordem do item minimum: 0 maximum: 99 showEntrance: type: boolean description: Apresentar tela de entrada default: false insurance: description: R166SEG – Seguros type: object required: – code – name properties: id: type: string maxLength: 32 description: Id do seguro code: type: integer format: int64 description: Código do seguro minimum: 1 maximum: 999 name: type: string maxLength: 15 description: Nome do seguro wagetypeGroup: description: R008SEL – Grupo de Seleção dos Eventos type: object required: – code – name properties: id: type: string maxLength: 32 description: Id da seleção code: type: integer format: int64 description: Código do seleção minimum: 1 maximum: 999 name: type: string maxLength: 20 description: Nome da seleção externalId: type: string description: Id externo pointEmbarkation: description: Ponto de embarque(R028BVT) – utilizado para o cadastro de vale transporte type: object required: – code – name – neighborhood – transportLine – otherCompany properties: id: type: string maxLength: 32 description: Id do ponto de embarque code: type: integer format: int64 description: Código do ponto de embarque minimum: 0 maximum: 9999 name: type: string description: Nome do ponto de embarque neighborhood: type: object allOf: – #/definitions/neighborhood description: Bairro do ponto de embarque transportLine: type: object allOf: – #/definitions/transportLine description: Linha de transporte otherCompany: type: object allOf: – #/definitions/othercompany description: Outra empresa diseaseICD11: description: Doença CID11 type: object properties: id: type: string maxLength: 32 description: Identificador itemType: type: string allOf: – #/definitions/diseaseICD11ItemType description: Tipo do item code: type: string description: Código da Doença chapterCode: type: string description: Código do capítulo name: type: string description: Descrição da doença x-i18n: true externalId: type: string description: Id externo translations: type: object properties: locale: type: object properties: name: type: string example: pt-BR: name: Exemplo de texto usando locale pt-BR. en-US: name: Text example using en-US locale. 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. importError: description: type: object required: – errorType – lineNumber – bean – message – exceptionClass properties: errorType: type: string allOf: – #/definitions/errorType description: lineNumber: type: integer format: int64 description: bean: type: string description: message: type: string description: exceptionClass: type: string description: fielddto: description: type: object required: – id – name – fieldType properties: id: type: integer format: int64 description: name: type: string description: fieldType: type: string allOf: – #/definitions/fieldType description: start: type: integer format: int64 description: size: type: integer format: int64 description: maskPattern: type: string description: hookdto: description: type: object required: – hookFunction – script properties: hookFunction: type: string allOf: – #/definitions/hookFunction description: script: type: string description: layoutdto: description: type: object required: – id – description – fileFormat – errorStrategy – skipLines – fields properties: id: type: integer format: int64 description: description: type: string description: fileFormat: type: string allOf: – #/definitions/fileFormat description: errorStrategy: type: string allOf: – #/definitions/errorStrategy description: delimiter: type: string description: skipLines: type: integer format: int64 description: fields: type: array items: type: object allOf: – #/definitions/fielddto minimum: 1 description: hooks: type: array items: type: object allOf: – #/definitions/hookdto description: importReport: description: type: object required: – id – startTime – endTime – uri – beanClass – serviceClass – layout – sucessCount – errorsCount – filteredCount – skippedCount properties: id: type: string description: startTime: type: string format: date-time description: endTime: type: string format: date-time description: uri: type: string description: beanClass: type: string description: serviceClass: type: string description: layout: type: object allOf: – #/definitions/layoutdto description: sucessCount: type: integer format: int64 description: errorsCount: type: integer format: int64 description: filteredCount: type: integer format: int64 description: skippedCount: type: integer format: int64 description: importErrors: type: array items: type: object allOf: – #/definitions/importError description: exportEventStatus: description: type: object required: – importerId – eventType – recordCount properties: importerId: type: string description: eventType: type: string allOf: – #/definitions/eventType description: recordCount: type: integer format: int64 description: importEventStatus: description: type: object required: – importerId – eventType – status – recordCount properties: importerId: type: string description: eventType: type: string allOf: – #/definitions/eventType description: status: type: string allOf: – #/definitions/status description: errorMessage: type: string description: recordCount: type: integer format: int64 description: importReport: type: object allOf: – #/definitions/importReport description: exportConfig: description: type: object required: – uri – layout – async – errorStrategy properties: uri: type: string description: layout: type: object allOf: – #/definitions/layoutdto description: async: type: boolean description: errorStrategy: type: string description: importConfig: description: type: object required: – uri – layout – async – batchSize – errorStrategy properties: uri: type: string description: layout: type: object allOf: – #/definitions/layoutdto description: async: type: boolean description: batchSize: type: integer format: int64 description: errorStrategy: type: string allOf: – #/definitions/errorStrategy description: 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 description: A symbolic code identifying the category of the reason of the error. enum: – BAD_REQUEST – UNAUTHORIZED – PAYMENT_REQUIRED – FORBIDDEN – OBJECT_NOT_FOUND – REQUEST_TIMEOUT – GONE – UNPROCESSABLE – INTERNAL_ERROR – NOT_IMPLEMENTED – SERVICE_UNAVAILABLE – INSUFFICIENT_STORAGE

Este artigo foi útil para você?

1 Sim  Não
Leave A Comment Cancelar resposta

Você precisa fazer o login para publicar um comentário.

© 2022 Senior. Todos os direitos reservados.
Mais pesquisados:Customização, Tutorial, Documentação