ACCESS_HISTORY view (Account Usage and Organization Usage): Simpler format for values (Preview)¶
Attention
This behavior change is in the 2026_01 bundle.
For the current status of the bundle, refer to Bundle history.
The format of values in the ACCOUNT_USAGE.ACCESS_HISTORY and ORGANIZATION_USAGE.ACCESS_HISTORY views behaves as follows:
- Before the change:
A value is specified as a JSON object with a
valuekey. For example:{ "columns": [ { "objectName": "A", "objectId": { "value": 2 }, "subOperationType": "ADD" }, { "objectName": "B", "objectId": { "value": 3 }, "subOperationType": "ADD" } ] }
- After the change:
A key-value pair shows the value as a string, number, or Boolean directly. The
valuekey is no longer needed. For example:{ "columns": [ { "objectName": "A", "objectId": 2, "subOperationType": "ADD" }, { "objectName": "B", "objectId": 3, "subOperationType": "ADD" } ] }
This change simplifies the record structure and improves readability.
Ref: 2179