- 概要
- はじめに
- 概念
- UiPath CLI を使用する
- 使用ガイド
- CI/CD レシピ
- コマンド リファレンス
- 概要
- 終了コード
- グローバル オプション
- 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
- テスト データのキューを追加
- 追加-テスト-データ-バリエーション
- 分析
- 開発
- プロジェクトを作成
- 差分
- アクティビティを検索
- GET-ANALYZER-RULES
- get-default-activity-xaml
- エラーを取得
- 手動テスト用のテスト ケースを取得
- 手動テストステップを取得
- get-library-object-repository
- get-object-repository
- get-versions
- Get-workflow-example
- indicate-application
- 要素を示す
- inspect-package
- install-data-fabric-entities
- パッケージのインストールまたは更新
- list-data-fabric-entities
- list-instances
- list-workflow-examples
- パッケージ化
- パブリッシュ
- remote
- 元に戻す
- run, debug & execution
- ファイル名を実行
- 検索テンプレート
- スタートスタジオ
- 実行を停止
- tm
- UIA
- uip tasks
- uip traces
- uip traces feedback
- 移行
- 参照とサポート
Syntax and options for `uip rpa get-object-repository`, which returns the current project's own Object Repository as a JSON tree.
uip rpa get-object-repository returns the current project's own Object Repository — the applications, screens, and elements it defines — as a JSON tree. It excludes entries inherited from referenced libraries; use uip rpa get-library-object-repository to read those separately.
The verb runs inside a hosted project context on both backends (Studio's project process and Helm's project assembly load context), so a project must be open before it can be called.
概要
uip rpa get-object-repository
uip rpa get-object-repository
オプション
この動詞はコマンドごとのオプションを取りません。すべての uip rpa 動詞に共通する親レベルのオプションを使用します。詳しくは、「 RPA ツールの概要」をご覧ください。
例
# Read the current project's Object Repository
uip rpa get-object-repository
# Read the current project's Object Repository
uip rpa get-object-repository
データシェイプ(--output json)
The command returns the Object Repository tree exactly as objectRepository.getProjectObjects() produces it — apps, then screens, then elements, nested to match the repository's own structure. Shape is otherwise unspecified and may evolve with the Object Repository feature itself; inspect a real project's output rather than relying on a fixed schema.
On failure (for example, no project is open), the command reports:
{
"success": false,
"errorMessage": "<reason>"
}
{
"success": false,
"errorMessage": "<reason>"
}
関連
uip rpa get-library-object-repository— the equivalent read for a library.nupkg's own Object Repository, rather than the open project's.