DependencyUpdateRequest

Payload to update manual dependencies for a file

Properties

Name Type Description
dependencies array List of file IDs to set as manual dependencies
View JSON Schema on GitHub

JSON Schema

automation-anywhere-dependencyupdaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DependencyUpdateRequest",
  "title": "DependencyUpdateRequest",
  "type": "object",
  "description": "Payload to update manual dependencies for a file",
  "properties": {
    "dependencies": {
      "type": "array",
      "description": "List of file IDs to set as manual dependencies",
      "items": {
        "type": "integer",
        "format": "int64",
        "description": "Numeric file ID of a dependency"
      }
    }
  }
}