- Información general
- Comience ya
- Conceptos
- Uso de UiPath CLI
- Guías prácticas
- Recetas de CI/CD
- Referencia de los comandos
- Información general
- Códigos de salida
- Opciones globales
- agente de código UIP
- uip coder
- uip context-grounding
- UIP Docsai
- uip function
- uip guardrails
- uip llm-configuration
- uip llm-gateway
- uip model-hub
- añadir-entidad-de-datos-de-prueba
- añadir-cola-de-datos-de-prueba
- añadir-variación-de-datos-de-prueba
- Analizar
- Crear
- Crear proyecto
- Diferencia
- Buscar actividades
- obtener-reglas-del-analizador
- obtener-predeterminado-actividad-xaml
- obtener-errores
- obtener-casos-de-prueba-manual
- obtener-pasos-de-prueba-manual
- get-library-object-repository
- get-object-repository
- obtener versiones
- get-workflow-example
- indicar-aplicación
- indicar-elemento
- inspeccionar-paquete
- install-data-fabric-entities
- instalar-o-actualizar-paquetes
- enumerar-data-fabric-entities
- list-instances
- ejemplos-de-flujo-de-trabajo-de-lista
- Paquete
- Publicar
- remote
- restore
- run, debug & execution
- archivo de ejecución
- plantillas-de-búsqueda
- iniciar-studio
- detener la ejecución
- tm
- UIA
- uip tasks
- Seguimientos de UIP
- uip traces feedback
- Migración
- Referencia y soporte
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.
Sinopsis
uip rpa get-object-repository
uip rpa get-object-repository
Opciones
Este verbo no tiene opciones por comando. Usa las opciones de nivel principal compartidas por cada verbo uip rpa — consulta Descripción general de la herramienta RPA.
Ejemplos
# Read the current project's Object Repository
uip rpa get-object-repository
# Read the current project's Object Repository
uip rpa get-object-repository
Forma de datos (--json de salida)
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>"
}
Relacionado
uip rpa get-library-object-repository— the equivalent read for a library.nupkg's own Object Repository, rather than the open project's.