FileDependencyResponse

Dependency information for a bot file

Properties

Name Type Description
dependencies array List of files this bot depends on
View JSON Schema on GitHub

JSON Schema

automation-anywhere-filedependencyresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FileDependencyResponse",
  "title": "FileDependencyResponse",
  "type": "object",
  "description": "Dependency information for a bot file",
  "properties": {
    "dependencies": {
      "type": "array",
      "description": "List of files this bot depends on",
      "items": {
        "$ref": "#/components/schemas/RepositoryObject"
      }
    }
  }
}