UiPath Documentation
marketplace
latest
false
Importante :
Este conteúdo foi traduzido com auxílio de tradução automática. A localização de um conteúdo recém-publicado pode levar de 1 a 2 semanas para ficar disponível.
UiPath logo, featuring letters U and I in white

Guia do usuário do Marketplace

Última atualização 1 de abr de 2026

Analisar documento de várias páginas

The Analyze Multipage Document activity uses the Amazon Textract StartDocumentAnalysis and GetDocumentAnalysis APIs to analyze a multi-page document stored in an S3 bucket (Bucket, DocumentName, and Version). If your document includes a table, you have the option to indicate if the first row contains column headers (DiscoverColumnHeaders) and/or ignore empty rows (IgnoreEmptyRows).

After analyzing the document, the activity returns the document properties in a PageDetailCollection object (Pages) that you can use as input variables in other activities outside of the Amazon Textract Activities Package.

The Analyze Multipage Document activity is essentially a combination of the Start Document Analysis, Get Document Analysis Status, and Get Document Analysis activities in a single activity.

Importante:

In previous versions of this activity, the (Pages) output parameter returned a PageDetail[] object. In 2.0 this has been changed to a PageDetailCollection to allow us to return the RawJson property for the method call, which was not possible with an array.

Como funciona

The following steps and message sequence diagram is an example of how the activity works from design time (that is, the activity dependencies and input/output properties) to run time.

  1. Conclua as etapas de Configuração .
  2. Add the Amazon Scope activity to your project.
  3. Add the Analyze Single Page Document inside the Amazon Scope activity.
  4. Enter values for the S3 Storage input properties.
  5. Create and enter a PageDetailCollection variable for your Output property.
  6. Execute a atividade.
    • Your input properties are sent to the AnalyzeDocument API.

    • A API retorna o valor PageDetail para sua variável de propriedade de saída.

      Analyze Multipage Document message sequence diagram

Propriedades

Os valores para as seguintes propriedades são especificados ao adicionar esta atividade ao seu projeto no UiPath Studio.

Analyze Multipage Document properties panel in UiPath Studio

Comum

NomeDeExibição

O nome de exibição da atividade.

AtributosDetalhes
TipoString
RequiredSim
Valor padrãoAnalyze Multipage Document
Valores permitidosInsira uma variável String ou String .
ObservaçõesN/A

Entrada

Unlike the Get Document Analysis Status, which requires an external delay mechanism to poll the service for status changes, the Analyze Multipage Document includes the following, optional input properties to set an initial status check delay (InitialDelay) and status check interval (StatusCheckInterval).

InitialDelay

O tempo de espera antes que a atividade chame a API Amazon Textract GetDocumentAnalysis para recuperar o valor JobStatus.

AtributosDetalhes
TipoInt32 (milissegundos)
RequiredNão
Valor padrão15000 (not shown)
Valores permitidosInsira uma variável Int32 ou Int32 .
ObservaçõesEnter your value in milliseconds (e.g., 30000 for 30 seconds); your value must be greater or equal to 15000. When analyzing a large document, it's recommended that you enter the estimated time it takes for the Amazon Textract service to complete its analysis. For example, if your document takes up to 2 minutes to analyze, you should enter 120000 as your value and use the StatusCheckInterval property to indicate how often you want to check for an updated status if the job doesn't complete within the 2-minute estimate.
StatusCheckInterval

O tempo de espera entre as chamadas para a API Amazon Textract GetDocumentAnalysis para recuperar o valor de JobStatus.

AtributosDetalhes
TipoInt32 (milissegundos)
RequiredNão
Valor padrão10000 (not shown)
Valores permitidosInsira uma variável Int32 ou Int32 .
ObservaçõesEnter your value in milliseconds (e.g., 15000 for 30 seconds); your value must be greater or equal to 10000. The objective of this property is to help manage the number of calls that your activity makes to the Amazon Textract API.

Opções

TipoDeAnálise

Especifica os tipos de análise a serem realizados. Use Tabelas para retornar informações sobre as tabelas detectadas no documento de entrada e Formulários para retornar dados de formulários detectados.

AtributosDetalhes
TipoENUM
RequiredNão.
Valor padrãoTodos
Valores permitidosTodas, Tabelas, Formulários
ObservaçõesN/A
DiscoverColumnHeaders

Indica se as tabelas no documento incluem cabeçalhos de coluna.

AtributosDetalhes
TipoCaixa de seleção
RequiredNão
Valor padrãonão selecionado
Valores permitidosSelecionado ou Não Selecionado
ObservaçõesN/A
IgnorarLinhasVazias

Indica se as linhas vazias nas tabelas do documento devem ser ignoradas ao analisar o documento.

AtributosDetalhes
TipoCaixa de seleção
RequiredNão
Valor padrãonão selecionado
Valores permitidosSelecionado ou Não Selecionado
ObservaçõesN/A

Armazenamento S3

Bucket

O nome do bucket S3 em que o documento é armazenado.

AtributosDetalhes
TipoString
RequiredSim
Valor padrãoVazio
Valores permitidosInsira uma variável String ou String .
ObservaçõesThe AWS Region for the S3 bucket that contains the document must match the Region that you selected in the Amazon Scope activity. For Amazon Textract to process a file in an S3 bucket, the user must have permission to access the S3 bucket; for more information, see step 6 in the Create IAM User section of the Setup guide.
Nome do Documento

The case-sensitive name of the file in the specified Bucket that you want to analyze.

AtributosDetalhes
TipoString
RequiredSim
Valor padrãoVazio
Valores permitidosInsira uma variável String ou String .
ObservaçõesFormatos de documento suportados: PNG, JPEG e PDF.
Versão

Se o bucket tiver o controle de versão habilitado, você poderá especificar a versão do objeto.

AtributosDetalhes
TipoString
RequiredNão
Valor padrãoVazio
Valores permitidosInsira uma variável String ou String .
ObservaçõesN/A

Diversos

Particular

Se selecionado, os valores das variáveis e argumentos não são mais registrados no nível Verbose.

AtributosDetalhes
TipoCaixa de seleção
RequiredNão
Valor padrãonão selecionado
Valores permitidosSelecionado ou Não Selecionado
ObservaçõesN/A

Saída

Páginas

As propriedades extraídas do documento especificado são retornadas como uma matriz.

AtributosDetalhes
TipoPageDetailCollection
RequiredNão (recomendado se você planejar usar os dados de saída em atividades subsequentes)
Valor padrãoVazio
Valores permitidosInsira uma variável PageDetailCollection
ObservaçõesEach object from the array represents the results for one individual page. This is a change from previous versions which returned a PageDetail[] object. See Page Detail for the description of the PageDetail object and its properties.

Exemplo

A imagem a seguir mostra um exemplo do relacionamento de dependência de atividade e valores de propriedade de entrada/saída.

For step-by-step instructions and examples, see the Quickstart guides.

Analyze Multipage Document activity dependency and input/output property values

Analyze Multipage Document output example in UiPath Studio

  • Como funciona
  • Propriedades
  • Comum
  • Entrada
  • Opções
  • Armazenamento S3
  • Diversos
  • Saída
  • Exemplo

Esta página foi útil?

Conectar

Precisa de ajuda? Suporte

Quer aprender? Academia UiPath

Tem perguntas? Fórum do UiPath

Fique por dentro das novidades