Periodic Table Database Schema - v0.7.1
    Preparing search index...

    Comprehensive description of a multi-step chemical or nuclear process.

    type Reaction = {
        condition?: Condition;
        context?: string;
        enthalpy?: NumberValue<"molarEnergy">;
        latex?: string;
        references?: RefId[];
        steps: ReactionStep[];
    }
    Index

    Properties

    condition?: Condition

    Global conditions applicable to the entire reaction.

    context?: string

    Qualitative scientific notes and context.

    enthalpy?: NumberValue<"molarEnergy">

    Molar heat change (enthalpy of reaction) associated with the process.

    latex?: string

    Typographic representation of the reaction equation in LaTeX.

    references?: RefId[]

    Bibliographic evidence supporting the reaction data.

    steps: ReactionStep[]

    Sequential steps defining the reaction pathway.