mirror of
https://github.com/LukeHagar/api-specs.git
synced 2025-12-09 04:19:16 +00:00
* IDA-16116 add api spec for new featurestore api * IDA-16116 fix lint errors and add security * IDA-16116 add example to all objects * IDA-16116 remove root level example * IDA-16116 fix response * IDA-16116 update tag based on feedback' by github action: 4513321408
24 lines
628 B
YAML
24 lines
628 B
YAML
type : object
|
|
properties:
|
|
results:
|
|
type: array
|
|
description: A list of key value mappings of entity and feature names and their values from the feature store
|
|
items:
|
|
type: object
|
|
additionalProperties:
|
|
type: string
|
|
example: [
|
|
{
|
|
identity_id: 2c918089762475180176267f885e54ca,
|
|
customer_id: f44d2387-9285-422d-ab72-b6f15ed2b39e,
|
|
ent_count: 19,
|
|
peerless_score: 0
|
|
},
|
|
{
|
|
identity_id: 2c918089762475180176267f885e54cb,
|
|
customer_id: f44d2387-9285-422d-ab72-b6f15ed2b39e,
|
|
ent_count: 25,
|
|
peerless_score: 0.5
|
|
}
|
|
]
|