nuance_CARDINAL_NUMBER

A non-fractional, whole number denoting quantity (1, 2, 3) as opposed to an ordinal number (denoting order like first, second, third). Cardinal numbers can be described in natural speech up to and including a million, but any number larger than that must be dictated as a string of digits.

Sample language

  • 27
  • forty three
  • oh one two three

Numeric value range

<= 99,999,999

Schema

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