Skip to content

openpra-monorepo


Variable: ProbabilityModelSchema

const ProbabilityModelSchema: ZodObject<{ distribution: ZodDiscriminatedUnion<[ZodObject<{ errorFactor: ZodNumber; median: ZodNumber; type: ZodLiteral<LOGNORMAL>; }, $strip>, ZodObject<{ alpha: ZodNumber; betaParam: ZodNumber; type: ZodLiteral<BETA>; }, $strip>, ZodObject<{ mean: ZodNumber; stdDev: ZodNumber; type: ZodLiteral<NORMAL>; }, $strip>], "type">; estimationDetails: ZodOptional<ZodObject<{ confidenceIntervals: ZodOptional<ZodObject<{ lower: ZodRecord<ZodString, ZodNumber>; upper: ZodRecord<ZodString, ZodNumber>; }, $strip>>; dataPointReferences: ZodArray<ZodString>; estimationDate: ZodString; estimationMethod: ZodString; goodnessOfFit: ZodOptional<ZodObject<{ method: ZodString; value: ZodNumber; }, $strip>>; sampleSize: ZodOptional<ZodNumber>; }, $strip>>; source: ZodOptional<ZodEnum<{ DEFAULT: "DEFAULT"; ESTIMATED: "ESTIMATED"; MANUAL: "MANUAL"; }>>; }, $strip>

Defined in: da/data-analysis.ts:25