FolderRequest

Payload to create or update a folder

Properties

Name Type Description
name string Name for the folder
description string Optional description of the folder's purpose
View JSON Schema on GitHub

JSON Schema

automation-anywhere-folderrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FolderRequest",
  "title": "FolderRequest",
  "type": "object",
  "description": "Payload to create or update a folder",
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Name for the folder"
    },
    "description": {
      "type": "string",
      "description": "Optional description of the folder's purpose"
    }
  }
}