So UiPath Processes is being deprecated, and we are suggested to use UiPath Assistant.
![]()
No problem, but the assistant is missing something nice that Processes does in my opinion and is something I want in Assistant if that is replacing this.
If we define the specific content schema in a queue then processes lets us make queue items directly via the Ui, dynamically creating the input based on the schema (even handling multi data formats depending on what the Schema says, including allowing you to attach files that are to be used in an automation.
Here is an example of a schema that allows a file attachment and how it looks in the Processes tab.
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"UserFile_storage": {
"$id": "#/properties/UserFile_storage",
"type": "string",
"title": "Upload Document",
"default": "FileName",
"examples": [
"User FileName"
]
},
"BucketName": {
"$id": "#/properties/BucketName",
"type": "string",
"title": "BucketName",
"default": "ActionsTest",
"examples": [
"User FileName"
]
}
},
"required": [
"UserFile_storage",
"BucketName"
],
"additionalProperties": false
}


