UiPath · JSON Structure

Automation Hub Collaborator Structure

A user collaborating on an automation idea or project

Type: object Properties: 4
AutomationRobotic Process AutomationRPAArtificial IntelligenceDocument ProcessingEnterprise AutomationOrchestrationTesting

Collaborator is a JSON Structure definition published by UiPath, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

userId name email role

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/uipath/refs/heads/main/json-structure/automation-hub-collaborator-structure.json",
  "name": "Collaborator",
  "description": "A user collaborating on an automation idea or project",
  "type": "object",
  "properties": {
    "userId": {
      "type": "int32",
      "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": "user@example.com"
    },
    "role": {
      "type": "string",
      "description": "Role of this collaborator on the automation",
      "example": "example-value"
    }
  }
}