When I use List Rows on a Dataverse Table, the output json does not show columns with null values. This is a big problem when needing to parse json which requires entering the schema that contains both columns, but the output doesn't match the schema causing action to fail b/c a column was null and omitted instead of showing a blank/null value.
Example:
I have a Dataverse table called 'OmittedNullColumn' with fields for Name and Location. There are 3 records, 1 has both Name and Location, the other 2 only have either a Name or a Location, but not the other. When you run list rows on this table, the response is the 3 records, but the 2 items with Null values don't contain those fields. The expectation is cr71c_name and cr71c_location in both of these situations should show those columns exist but have no value, null value, etc.
I tried adding these columns in the List Rows Select Columns and in Filter Rows hoping maybe directly referencing them might force those null columns to appear in the JSON output, but no luck
Is there a way to force power automate, list rows, or Dataverse (where ever the issue is here) to display the columns in the json output with no value instead of omitting the entry entirely?