CredentialAttributePost

Attribute definition for creating a new credential

Properties

Name Type Description
name string Attribute name
description string Description of the attribute
masked boolean Whether to mask this attribute's value
userProvided boolean Whether users provide their own values
View JSON Schema on GitHub

JSON Schema

automation-anywhere-credentialattributepost-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CredentialAttributePost",
  "title": "CredentialAttributePost",
  "type": "object",
  "description": "Attribute definition for creating a new credential",
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Attribute name"
    },
    "description": {
      "type": "string",
      "description": "Description of the attribute"
    },
    "masked": {
      "type": "boolean",
      "description": "Whether to mask this attribute's value"
    },
    "userProvided": {
      "type": "boolean",
      "description": "Whether users provide their own values"
    }
  }
}