nuance_DOUBLE

Fractions and decimal-point numbers.

Sample language

  • 2.7
  • one and two tenths
  • point 5

Numeric value range

  • For the whole part and decimal part in decimal-point numbers: <= 99,999,999
  • For fractions: Denominators up to tenth

Schema

{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
     "nuance_DOUBLE": {
       "anyOf": [
         {
           "type": "number"
         },
         {
           "type": "string"
         }
       ]
     }
  },
  "additionalProperties": false
}