Skip to content

parse_group : parse_precision

S. Leang edited this page Mar 21, 2017 · 1 revision

parse_precision

  • value: specifies the precision of the value being extracted
  • type: integer
  • default value: 10
  • valid values: any integer value
  • special cases: 0, precision used for "parse_type":"integer"
  • special cases: -1, precision is calculated based on the number of digits to the right of the decimal of the parsed value
  • notes: parse_precision will be used to determine parse_tolerance if parse_tolerance is not specified - using the formula:
    parse_tolerance = 10**(-parse_precision)
  • entry example:
    "parse_precision" : 10

Clone this wiki locally