uipath-cli
latest
false
Guia do usuário da UiPath CLI
- Visão geral
- Introdução
- Conceitos
- Usando o UiPath CLI
- Guias de instruções
- Receitas de CI/CD
- Referência de comando
- Visão geral
- Códigos de saída
- Opções globais
- Agente de código uip
- uip coder
- uip context-grounding
- Documento da UIP
- uip function
- uip guardrails
- uip llm-configuration
- uip llm-gateway
- uip model-hub
- adicionar-tipo-dados-de-teste
- adicionar-dados-de-teste-fila
- adicionar-teste-variação de dados
- Analisar
- Criar
- criar projeto
- Comparação
- encontrar atividades
- obter-analisador-regras
- obter-padrão-atividade-xaml
- obter-erros
- obter-casos-de-teste-manuais
- obter-etapas-de-teste-manual
- get-library-object-repository
- get-object-repository
- Obter versões
- obter-fluxo-de-trabalho-exemplo
- indicar aplicativo
- indicar elemento
- inspecionar pacote
- instalar-data-fabric-entities
- instalar-ou-atualizar pacotes
- listar-data-fabric-entities
- list-instances
- listar-exemplos-de-fluxo-de-trabalho
- Empacotar
- Publicar
- remote
- restore
- run, debug & execution
- arquivo de execução
- modelos-pesquisar
- Iniciar Studio
- interromper a execução
- tm
- UIA
- uip tasks
- Traces da UIP
- uip traces feedback
- Migração
- Referência e suporte
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.
Syntax and options for `uip api-workflow validate`, which checks an API Workflow JSON file's structure before packaging or running it.
uip api-workflow validate checks an API Workflow JSON file's structure — task shapes, expressions, and metadata — against schema, without executing it. Use it as a fast pre-flight check before run or pack.
Resumo
uip api-workflow validate <file> [options]
uip api-workflow validate <file> [options]
<file>— path to the API Workflow JSON file to validate.
Opções
| Bandeira | Description |
|---|---|
--verbose | Enable verbose logging, including a stack trace if validation itself throws. |
Exemplos
uip api-workflow validate ./workflow.json
uip api-workflow validate ./workflow.json
uip api-workflow validate ./workflow.json --verbose
uip api-workflow validate ./workflow.json --verbose
Formato dos dados (--output json)
{
"Code": "ApiwfValidate",
"Data": {
"File": "/abs/path/to/workflow.json",
"Status": "Valid"
}
}
{
"Code": "ApiwfValidate",
"Data": {
"File": "/abs/path/to/workflow.json",
"Status": "Valid"
}
}
When validation passes with warnings, Data adds a Warnings field summarizing the count and each warning's path and message. When validation fails (errors present), the command exits non-zero and reports a Failure result whose Instructions field lists every issue found, each tagged [error] or [warning] with its JSON path.
Relacionado
- uip api-workflow run — execute the workflow after it validates clean.
- uip api-workflow pack — empacote um fluxo de trabalho validado para publicação.