UiPath · JSON Structure

Orchestrator Asset Structure

A shared asset storing a value accessible to automation processes

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

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

Properties

Id Name ValueType StringValue IntValue BoolValue CredentialUsername CredentialPassword Description OrganizationUnitId

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/orchestrator-asset-structure.json",
  "name": "Asset",
  "description": "A shared asset storing a value accessible to automation processes",
  "type": "object",
  "properties": {
    "Id": {
      "type": "int64",
      "description": "Unique integer identifier of the asset",
      "example": 12345
    },
    "Name": {
      "type": "string",
      "description": "Display name of the asset",
      "example": "Example Name"
    },
    "ValueType": {
      "type": "string",
      "enum": [
        "Text",
        "Integer",
        "Bool",
        "Credential",
        "WindowsCredential",
        "KeyValueList"
      ],
      "description": "Data type of the asset value",
      "example": "Text"
    },
    "StringValue": {
      "type": "string",
      "description": "Value when ValueType is Text",
      "example": "example-value"
    },
    "IntValue": {
      "type": "int32",
      "description": "Value when ValueType is Integer",
      "example": 1
    },
    "BoolValue": {
      "type": "boolean",
      "description": "Value when ValueType is Bool",
      "example": true
    },
    "CredentialUsername": {
      "type": "string",
      "description": "Username portion when ValueType is Credential",
      "example": "Example Name"
    },
    "CredentialPassword": {
      "type": "string",
      "description": "Password portion when ValueType is Credential (write-only)",
      "example": "example-value"
    },
    "Description": {
      "type": "string",
      "description": "Optional description of the asset's purpose",
      "example": "Example description for this resource."
    },
    "OrganizationUnitId": {
      "type": "int64",
      "description": "ID of the folder in which this asset resides",
      "example": 12345
    }
  }
}