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

    Quantitative measure of the adverse effects of a substance on living organisms.

    type Toxicity = {
        application?: ToxicityApplication;
        duration?: SingleValue<"time"> | RangeValue<"time">;
        organism:
            | { type: ORGANISM; value: Organism }
            | { type: OTHER; value: string };
        type: ToxicityType;
        value:
            | SingleValue<"massFraction">
            | SingleValue<"massPerMass">
            | RangeValue<"massFraction">
            | RangeValue<"massPerMass">;
    }
    Index

    Properties

    application?: ToxicityApplication

    Route of biological exposure.

    duration?: SingleValue<"time"> | RangeValue<"time">

    Temporal period of exposure during the test.

    organism: { type: ORGANISM; value: Organism } | { type: OTHER; value: string }

    Biological species or system used in the toxicity test.

    Classification of the toxicity endpoint (e.g., LD50, LC50).

    value:
        | SingleValue<"massFraction">
        | SingleValue<"massPerMass">
        | RangeValue<"massFraction">
        | RangeValue<"massPerMass">

    Quantitative toxicological limit or range.