UiPath · JSON Structure

Orchestrator O Data Package Collection Structure

OData collection response containing packages

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

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

Properties

value

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-o-data-package-collection-structure.json",
  "name": "ODataPackageCollection",
  "description": "OData collection response containing packages",
  "type": "object",
  "properties": {
    "value": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "Id": {
            "type": "string",
            "description": "Package ID (name and version combined)"
          },
          "Title": {
            "type": "string",
            "description": "Package display title"
          },
          "Version": {
            "type": "string",
            "description": "Semantic version of the package"
          },
          "Description": {
            "type": "string",
            "description": "Package description from the NuGet metadata"
          },
          "Published": {
            "type": "datetime",
            "description": "ISO 8601 timestamp when the package was published"
          }
        }
      },
      "example": []
    }
  }
}