9

Cross-Post on Wolfram Community


I have an EntityProperty and I know how to get its list of qualifiers. Now how do I figure out the possible values these can take programmatically? Here's an example to get us started:

EntityValue[
 EntityProperty["Country", "ExternalBalance"],
 "Qualifiers"
 ]

{"CurrencyUnit", "Date", "PercentOfGDP", "TradeSection"

Now, say, how do I programmatically determine what "CurrencyUnit", "TradeSection", and "PercentOfGDP" can be?

b3m2a1
  • 46,870
  • 3
  • 92
  • 239

1 Answers1

10

You can discover available qualifiers and values for a property like this:

EntityValue[ EntityProperty["Country", "ExternalBalance"], "QualifierValues"]

I did find one example of this usage - in the Scope section of EntityValue ref page:

enter image description here

M.R.
  • 31,425
  • 8
  • 90
  • 281