PropertyValuesRequestBody
February 3, 2026 ยท View on GitHub
Query Property Values Params
Example Usage
import { PropertyValuesRequestBody } from "@inkeep/inkeep-analytics/models/components";
let value: PropertyValuesRequestBody = {
field: "properties",
key: "theme",
views: [
"events_view",
"conversations_view",
"semantic_threads_view",
"feedback_view",
],
};
Fields
| Field | Type | Required | Description | Example |
|---|---|---|---|---|
field | components.PropertyValuesRequestBodyField | :heavy_check_mark: | Which JSON field to query values from | properties |
key | string | :heavy_check_mark: | The property key to get values for | theme |
views | components.PropertyValuesRequestBodyViews[] | :heavy_minus_sign: | Optional list of views to query (defaults to all views) | [ "events_view", "conversations_view", "semantic_threads_view", "feedback_view" ] |
where | components.PropertyValuesRequestBodyWhere | :heavy_minus_sign: | N/A | |
limit | number | :heavy_minus_sign: | Maximum number of values to return | 100 |