Skip to content
This repository was archived by the owner on Dec 11, 2025. It is now read-only.

Latest commit

 

History

History
16 lines (11 loc) · 520 Bytes

File metadata and controls

16 lines (11 loc) · 520 Bytes

Home > @snowplow/browser-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;
};