UiPath · Schema

Collaborator

A user collaborating on an automation idea or project

AutomationRobotic Process AutomationRPAArtificial IntelligenceDocument ProcessingEnterprise AutomationOrchestrationTesting

Properties

Name Type Description
userId integer Unique integer identifier of the collaborating user
name string Display name of the collaborator
email string Email address of the collaborator
role string Role of this collaborator on the automation
View JSON Schema on GitHub

JSON Schema

automation-hub-collaborator-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/uipath/refs/heads/main/json-schema/automation-hub-collaborator-schema.json",
  "title": "Collaborator",
  "description": "A user collaborating on an automation idea or project",
  "type": "object",
  "properties": {
    "userId": {
      "type": "integer",
      "description": "Unique integer identifier of the collaborating user",
      "example": 12345
    },
    "name": {
      "type": "string",
      "description": "Display name of the collaborator",
      "example": "Example Name"
    },
    "email": {
      "type": "string",
      "format": "email",
      "description": "Email address of the collaborator",
      "example": "[email protected]"
    },
    "role": {
      "type": "string",
      "description": "Role of this collaborator on the automation",
      "example": "example-value"
    }
  }
}