---
title: "TransactionAttributeRecord"
url: "https://developers.zinnia.com/apis/policy-transactions-1-0-2/versions/d0006570-ab9d-464e-814f-d120ba425e84/schemas/TransactionAttributeRecord"
---

> Full API specification: https://developers.zinnia.com/apis/policy-transactions-1-0-2/versions/d0006570-ab9d-464e-814f-d120ba425e84.md

# TransactionAttributeRecord

A single resolved attribute entry. Always contains only the final resolved value — override configuration is never included in the response.

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Zinnia Policy Transactions API.
  version: 1.0.8
servers:
  - url: https://dev.api.zinnia.io
    description: DEV Environment
  - url: https://qa.api.zinnia.io
    description: QA Environment
components:
  schemas:
    TransactionAttributeRecord:
      type: object
      description: >
        A single resolved attribute entry. Always contains only the final
        resolved value — override configuration is never included in the
        response.
      required:
        - attributeName
        - attributeType
        - attributeValue
      properties:
        attributeName:
          type: string
          description: Attribute identifier.
          example: sendPaymentToBrokrageAccount
        attributeType:
          type: string
          enum:
            - STRING
            - BOOLEAN
            - NUMBER
            - LIST
          description: Data type of the attribute value.
          example: BOOLEAN
        itemType:
          type: string
          nullable: true
          description: Required when attributeType is LIST (e.g. "STRING"); null for all
            other types.
          example: STRING
        attributeValue:
          description: >
            The resolved value. Type corresponds to attributeType — Boolean,
            String, Number, or array of itemType for LIST. For derived
            attributes this reflects the matched override value, or the
            configured default when no override matched.
          example: true
```
