@classmethod
    def get_db_schemas(cls, filename="/etc/schemas/feed_db_schema.yaml"):
        """Get the feed DB schemas from file."""
        with open(filename, 'r') as schema_file:
            return yaml.load(schema_file)