UiPath · Schema

EntityRecordCollection

A paginated collection of entity records

AutomationRobotic Process AutomationRPAArtificial IntelligenceDocument ProcessingEnterprise AutomationOrchestrationTesting

Properties

Name Type Description
totalCount integer Total number of records matching the query
value array Array of entity records for the current page
nextLink string URL for the next page of results, if more records are available
View JSON Schema on GitHub

JSON Schema

data-service-entity-record-collection-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/data-service-entity-record-collection-schema.json",
  "title": "EntityRecordCollection",
  "description": "A paginated collection of entity records",
  "type": "object",
  "properties": {
    "totalCount": {
      "type": "integer",
      "description": "Total number of records matching the query",
      "example": 42
    },
    "value": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/EntityRecord"
      },
      "description": "Array of entity records for the current page",
      "example": []
    },
    "nextLink": {
      "type": "string",
      "format": "uri",
      "description": "URL for the next page of results, if more records are available",
      "example": "https://cloud.uipath.com/example"
    }
  }
}