def get_value(self, data):
        try:
            return int(data[self.id])
        except (KeyError, TypeError):
            return None