I don't know how to get the meaning of a certain EntityProperty
, such as the "Ceiling"
of "Aircraft"
. Maybe you can press F1 to arrive at the documentation of AircraftData
, where that particular property is described in the Details section.
But I want to get it programmatically, using a code method. Can this dream come true?
Furthermore, I find that a lot of EntityProperty
of a certain Entity
are undocumented, such as the "Price"
of "Element"
, which you can obtain like this:
EntityProperties["Element"]
Or the "work function":
But what is the meaning of these EntityProperty
entries?
Update:
The "Concept" type have a EntityProperty
similar to my desire.
This EntityProperty
of "Concept" can illustrate what is this entity.But my final target is know what is any EntityProperty
.Such as the "Format"
in type of "Periodical"
mean what?Unfortunately the type of Periodical
have no explanation in documentation.And not all of these EntityProperty
is self-explanatory.
Comments
Post a Comment