LockerPost

Payload to create or update a locker

Properties

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

JSON Schema

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