Type alias Context

Context: {
    id?: {
        [key: string]: string;
    };
    name?: string;
    type: string;
}

Data passed between entities and applications.

Type declaration

  • Optional id?: {
        [key: string]: string;
    }

    An object containing string key-value pairs for the bulk of the data for the context. Differs between context types.

    • [key: string]: string
  • Optional name?: string

    User-readable name for the incoming context.

  • type: string

    Conserved type for the context (e.g. instrument or country).

Generated using TypeDoc