get_person_subjects
Retrieve a list of subjects (e.g., anime, games) associated with a specific person by providing their unique ID, enabling insights into their contributions or roles.
Instructions
List subjects (e.g., anime, games) a person is related to (e.g., worked on).
Args:
person_id: The ID of the person.
Returns:
Formatted list of related subjects or an error message.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
person_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"person_id": {
"title": "Person Id",
"type": "integer"
}
},
"required": [
"person_id"
],
"title": "get_person_subjectsArguments",
"type": "object"
}