uipath-cli
latest
false
UiPath CLI user guide
- Overview
- Get started
- Concepts
- Using UiPath CLI
- How-to guides
- CI/CD recipes
- Command reference
- Overview
- Exit codes
- Global options
- uip codedagent
- uip coder
- uip context-grounding
- uip docsai
- uip function
- uip guardrails
- uip llm-configuration
- uip llm-gateway
- uip model-hub
- add-test-data-entity
- add-test-data-queue
- add-test-data-variation
- analyze
- build
- create-project
- diff
- find-activities
- get-analyzer-rules
- get-default-activity-xaml
- get-errors
- get-manual-test-cases
- get-manual-test-steps
- get-library-object-repository
- get-object-repository
- get-versions
- get-workflow-example
- indicate-application
- indicate-element
- inspect-package
- install-data-fabric-entities
- install-or-update-packages
- list-data-fabric-entities
- list-instances
- list-workflow-examples
- pack
- publish
- remote
- restore
- run, debug & execution
- run-file
- search-templates
- start-studio
- stop-execution
- tm
- uia
- uip tasks
- uip traces
- uip traces feedback
- Migration
- Reference & support
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.
Synopsis
uip api-workflow validate <file> [options]
uip api-workflow validate <file> [options]
<file>— path to the API Workflow JSON file to validate.
Options
| Flag | Description |
|---|---|
--verbose | Enable verbose logging, including a stack trace if validation itself throws. |
Examples
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
Data shape (--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.
Related
- uip api-workflow run — execute the workflow after it validates clean.
- uip api-workflow pack — package a validated workflow for publication.