We are trying to create a Power Automate flow that will retrieve the Dataverse table schema for a given table.
Currently we can see the Display name and name of a given column, but we would like to get that information in a Power Automate Flow.
The Dataverse connector to List rows includes a long list of tables, but finding the one that has the data I'm looking for has eluded me.
Does anyone know which Dataverse table includes this information?
Background: The "Audit" table in Dataverse contains the Audit History for records within Dataverse environment.
However, the "changedata" (See JSON below) within that table only includes logical names, and values (not Display Names and Labels) of attributes and their values.
We already found that we can find the mapping from the attribute values to their labels through the 'String Maps' table, but I've yet to be able to find the table where I can find the table schema to convert the attribute schema name to the display name. Ultimately we need this information to be able to export my Audit History for Part 11 compliant audit trails in Power Apps with human readable data.
{
"changedAttributes": [
{
"logicalName": "jg_gxpapplicability",
"newValue": "0",
"oldValue": "1"
}
]
}