/**
 * `ValidationStatus` describes the outcome of a validation process on a field.
 * @see {@link ParsedField.mappingStatus}
 * */
export enum EnumValidationStatus {
  /** The field has no validation specified. */
  VS_NONE,

  /** The validation for the field has been succeeded. */
  VS_SUCCEEDED,

  /** The validation for the field has been succeeded. */
  VS_FAILED
}
