Is there a better way to extract the keys in each of the COVID-19 datasets. I used the following but it does not work very well as I need to separate out the ResourceType Function from the list of datasets. I'm looking for a data set with patient related data like blood type.
covidlist = ResourceSearch["COVID-19"];
TableForm[
Table[{covidlist[[i, 1]],
ResourceData[covidlist[[i, 1]]][1 /* Keys]}, {i, 1, len}]]