get_properties
Retrieve property IDs linked to a specific Wikidata entity ID using this tool. Input the entity ID to receive a list of associated property IDs, returning an empty list if none exist.
Instructions
Get the properties associated with a given Wikidata entity ID.
Args:
entity_id (str): The entity ID to retrieve properties for. This should be a valid Wikidata entity ID.
Returns:
list: A list of property IDs associated with the given entity ID. If no properties are found, an empty list is returned.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
entity_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"entity_id": {
"title": "Entity Id",
"type": "string"
}
},
"required": [
"entity_id"
],
"title": "get_propertiesArguments",
"type": "object"
}