## Introduction For a custom object if the selected identifier field metadata is an number type than it wouldn't get be converted to a string #closes https://github.com/twentyhq/twenty/issues/12717 ## Concerns Kinda the same than for https://github.com/twentyhq/twenty/pull/12728 Here ObjectRecord unknown fields are typed as any, we might wanna do a poc in order to migrate to `unknown` usage ```ts import { BaseObjectRecord } from '@/object-record/types/BaseObjectRecord'; export type ObjectRecord = Record<string, any> & BaseObjectRecord; ```