nuance_ORDINAL_NUMBER

Number that defines a position in a series. Handles all values up until 31st.

Sample language

  • second
  • tenth
  • thirteenth

Examples

Responses for the above samples are shown below.

Example: second

{
  "nuance_ORDINAL_NUMBER": 2
}

Example: tenth

{
  "nuance_ORDINAL_NUMBER": 10
}

Example: thirteenth

{
  "nuance_ORDINAL_NUMBER": 13
}

Numeric value range

<= 31st (Since this has been used mostly for the day of the month. Some languages, such as Russian, have bigger coverage.)

Schema

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