How can I effectively store taxonomy within Orchestrator and subsequently retrieve it for various document understanding projects?

Hello everyone,

I want to store taxonomy created for document understanding project on orchestrator and use that for the project. How can I achieve this?

Also is there any way that I can store classification and extraction models on orchestrator trained in one project to be used on similar other projects?

Thank You!

@Ayush_Raj

Yes, I have gone through this thread, but it was a bit unclear.
Can you please elaborate on the same or do UiPath have any documentation for achieving this goal?

Thank you

You can take the contents of the taxonomy.json file and store it wherever you need.
In your workflow, instead of Load Taxonomy, you would get this string content from where you put it, and then do an assign with myProjectTaxonomy := Taxonomy.Deserialize(myStringTaxonomy) .

Please be aware you can do this, but you cannot dynamically load the settings in a DataExtractionScope activity for example (e.g., if a new document type or a new field appears, there is no way to automatically map it correctly and enable it in the DataExtractionScope without actually opening the workflow in Studio and going to COnfigure Extractors and performing the configuration there).

1 Like