Export Audit as JSON
When I use the Export function in Audit, the Details column is a mix of HTML and JSON.
For example:
<span>{<br> "Id": "variableset-LibraryVariableSets-76",<br> "OwnerId": "LibraryVariableSets-76",<br> "Version": 11</span><del style="background:#ffe6e6;">5</del><ins style="background:#e6ffe6;">6</ins><span><br>}</span>
I understand that this is a way to show what the changes were, but this format is only usable for display in HTML, not for parsing the exported audit via any tools.
Would it be possible to export this as JSON and indicate the change in some other, structural way?
E.g.
{ "Id": "variableset-LibraryVariableSets-76", "OwnerId": "LibraryVariableSets-76", "Version": { "OldValue": 115, "NewValue": 116 } }
Or in any other way which would allow to access this data programatically.
(originally posted on https://help.octopus.com/t/audit-export-returns-json-mixed-with-html-tags/24312)

-
Márton Balassa commented
If we could just get the raw JSON before and after the change, we could use an external diff tool.