LockerCredentialList

List of credentials contained within a locker

Properties

Name Type Description
list array Array of credential records in the locker
View JSON Schema on GitHub

JSON Schema

automation-anywhere-lockercredentiallist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LockerCredentialList",
  "title": "LockerCredentialList",
  "type": "object",
  "description": "List of credentials contained within a locker",
  "properties": {
    "list": {
      "type": "array",
      "description": "Array of credential records in the locker",
      "items": {
        "$ref": "#/components/schemas/Credential"
      }
    }
  }
}