def setup_schema(cls):
     """Set up the MongoDB schema."""
     db.create_collection('dispositions', validator=cls.schema_validator)
 def setup_schema(cls):
     """Set up the MongoDB schema."""
     db.create_collection(cls.collection, validator=calendar_reason_schema)
 def setup_schema(cls):
     """Set up the MongoDB schema."""
     db.create_collection(cls.collection, validator=defendant_race_schema)
 def setup_schema(cls):
     """Set up the MongoDB schema."""
     db.create_collection(cls.collection,
                          validator=docket_calendar_name_schema)
 def setup_schema(cls):
     """Set up the MongoDB schema."""
     db.create_collection(cls.collection,
                          validator=current_offense_level_degree_schema)
 def setup_schema(cls):
     """Set up the MongoDB schema."""
     db.create_collection(cls.collection, validator=case_status_schema)
 def setup_schema(cls):
     """Set up the MongoDB schema."""
     db.create_collection(cls.collection,
                          validator=court_division_indicator_schema)
 def setup_schema(cls):
     """Set up the MongoDB schema."""
     db.create_collection(cls.collection, validator=instrument_type_schema)