FileParentsResponse

Parent folder information for a repository object

Properties

Name Type Description
parents array List of parent folders in the hierarchy
View JSON Schema on GitHub

JSON Schema

automation-anywhere-fileparentsresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FileParentsResponse",
  "title": "FileParentsResponse",
  "type": "object",
  "description": "Parent folder information for a repository object",
  "properties": {
    "parents": {
      "type": "array",
      "description": "List of parent folders in the hierarchy",
      "items": {
        "$ref": "#/components/schemas/RepositoryObject"
      }
    }
  }
}