CredentialAttributeValuePostList

Payload to create or set multiple attribute values on a credential

Properties

Name Type Description
attributeValues array List of attribute values to create or set
View JSON Schema on GitHub

JSON Schema

automation-anywhere-credentialattributevaluepostlist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CredentialAttributeValuePostList",
  "title": "CredentialAttributeValuePostList",
  "type": "object",
  "description": "Payload to create or set multiple attribute values on a credential",
  "properties": {
    "attributeValues": {
      "type": "array",
      "description": "List of attribute values to create or set",
      "items": {
        "$ref": "#/components/schemas/CredentialAttributeValuePost"
      }
    }
  }
}