Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 511 Bytes

File metadata and controls

16 lines (11 loc) · 511 Bytes

Home > @snowplow/node-tracker > SelfDescribingJson

SelfDescribingJson type

export interface for any Self-Describing JSON such as context or Self Describing events

Signature:

type SelfDescribingJson<T extends Record<keyof T, unknown> = Record<string, unknown>> = {
    schema: string;
    data: T;
};