Person Filter Category Object Model
Key: personFilterCategory
The Person Filter Category Object Model within the profileAPI system is designed to effectively categorize and organize data for individuals. This model is crucial for enabling advanced filtering capabilities.
Fields Description
Here is the detailed description of each field within the Person Filter Category Object Model:
Field | Type | Description | Example |
---|---|---|---|
key | string | Represent the data type key as described in Data Types above | "topicsOfInterest" |
name | string | A user-friendly name that corresponds to the key , enhancing readability and understanding. | "Topics of Interest" |
description | string | Provides an in-depth explanation of what the filter category includes and how it should be utilized. | "Covers various topics that individuals show interest in within professional settings." |
isInferred | bool | Indicates whether the category is inferred by AI (true ) or from user-generated data (false ). | true |
Example Object
{
"key": "department",
"name": "Department",
"description": "The department where the employee works based on his title.",
"isInferred": true
}