Data model
The main model is PrismaFlow. It contains four PRISMA stages and optional metadata.
The stage names and count relationships follow the PRISMA 2020 flow diagram concepts for identification, screening, eligibility, and included studies. For the reporting guideline itself and citation guidance, see PRISMA acknowledgement and references.
from prismaflow import (
EligibilityStage,
IdentificationStage,
IncludedStage,
PrismaFlow,
PrismaTemplate,
ScreeningStage,
)
flow = PrismaFlow(
template=PrismaTemplate.PRISMA_2020_NEW_DATABASES_REGISTERS,
title="Example PRISMA Flow Diagram",
identification=IdentificationStage(
records_identified_databases=1240,
records_identified_registers=50,
),
screening=ScreeningStage(
records_removed_duplicates=210,
records_removed_automation=0,
records_removed_other=0,
records_screened=1080,
records_excluded=950,
),
eligibility=EligibilityStage(
reports_sought=130,
reports_not_retrieved=10,
reports_assessed=120,
reports_excluded={"Wrong population": 30},
),
included=IncludedStage(studies_included=40),
)Stages
Identification
records_identified_databasesrecords_identified_registersdatabase_specific_resultsregister_specific_resultswebsite_resultsorganisation_resultscitations_resultsprevious_studiesprevious_reports- computed property:
records_identified_total - computed property:
other_methods_total
Screening
records_removed_duplicatesrecords_removed_automationrecords_removed_otherrecords_screenedrecords_excluded- computed property:
records_removed_total
Eligibility
reports_soughtreports_not_retrievedreports_assessedreports_excludedother_sought_reportsother_notretrieved_reportsother_assessedother_excluded- computed property:
reports_excluded_total - computed property:
other_excluded_total - computed property:
all_reports_assessed - computed property:
all_reports_excluded_total
Included
studies_includedreports_includedtotal_studiestotal_reports
The nested models also accept official PRISMA app-style input aliases such as database_results, register_results, duplicates, dbr_sought_reports, dbr_excluded, new_studies, and new_reports.
Count types
All count fields are strict non-negative integers. Optional count fields may be omitted or set to null. String values such as "10" are not accepted as counts.