Interface NumericIdentificationKeyValidator

Numeric identification key validator. Validates a numeric identification key.

interface NumericIdentificationKeyValidator {
    get leaderType(): LeaderType;
    get identificationKeyType(): IdentificationKeyType;
    get prefixType(): PrefixType;
    get length(): number;
    get referenceCharacterSet(): ContentCharacterSet;
    get referenceCreator(): CharacterSetCreator;
    validate: (
        identificationKey: string,
        validation?: IdentificationKeyValidation,
    ) => void;
}

Hierarchy (View Summary)

Properties

validate: (
    identificationKey: string,
    validation?: IdentificationKeyValidation,
) => void

Validate an identification key and throw an error if validation fails.

Type declaration

Accessors

  • get identificationKeyType(): IdentificationKeyType
  • Get the identification key type. Per the GS1 General Specifications, the identification key type determines the remaining properties.

    Returns IdentificationKeyType

  • get prefixType(): PrefixType
  • Get the prefix type supported by the identification key type. For all identification key types except the GTIN, this is PrefixType.GS1CompanyPrefix. For the GTIN, the prefix type determines the length.

    Returns PrefixType

  • get length(): number
  • Get the length. For numeric identification key types, the length is fixed; for alphanumeric identification key types, the length is the maximum.

    Returns number