alphanumeric: context => {
    if (context.value == null || !context.value.length || !context.value.toString().match(string._regex.alphanumeric)) {
      context.fail('Value must contain only letters and/or numbers')
    }
  }