get boolean(): boolean {
        if (typeof this.data !== 'boolean') {
            throw new errors.ValidationError({message: `${this.field} must be a boolean`});
        }
        return this.data;