import { AdobeIdentityItem } from './AdobeIdentityItem'; /** * Defines a map containing a set of end user identities, keyed on either namespace integration code or the * namespace ID of the identity. The values of the map are an array, meaning that more than one identity of each * namespace may be carried. Use identityMap if bringing in data from systems having identities stored in a map structure. * * {@link https://github.com/adobe/xdm/blob/master/components/fieldgroups/shared/identitymap.schema.json} */ export type AdobeIdentityMap = { [namespace: string]: AdobeIdentityItem[] };