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