LockerListResponse

Paginated list of lockers

Properties

Name Type Description
list array Array of locker records
page object
View JSON Schema on GitHub

JSON Schema

automation-anywhere-lockerlistresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LockerListResponse",
  "title": "LockerListResponse",
  "type": "object",
  "description": "Paginated list of lockers",
  "properties": {
    "list": {
      "type": "array",
      "description": "Array of locker records",
      "items": {
        "$ref": "#/components/schemas/Locker"
      }
    },
    "page": {
      "$ref": "#/components/schemas/PageInfo"
    }
  }
}