mirror of
https://github.com/LukeHagar/api-specs.git
synced 2025-12-08 20:37:48 +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
26 lines
727 B
YAML
26 lines
727 B
YAML
type : object
|
|
properties:
|
|
features:
|
|
type: object
|
|
description: A mapping from the feature alias to the feature view name and column name in the feature store in the format <view>:<column>
|
|
additionalProperties:
|
|
type: string
|
|
example:
|
|
ent_count: "identity_entitlement_count:entitlement_count"
|
|
peerless_score: "identity_peerless_score:peerless_score"
|
|
entities:
|
|
type: array
|
|
description: A list of entity key value mappings to retrieve values for
|
|
items:
|
|
type: object
|
|
additionalProperties:
|
|
type: string
|
|
example: [
|
|
{
|
|
identity_id: 2c918089762475180176267f885e54ca
|
|
},
|
|
{
|
|
identity_id: 2c918089762475180176267f885e54cb
|
|
}
|
|
]
|