nuance_ORDINAL_NUMBER
Number that defines a position in a series. Handles all values up until 31st.
Tip:
nuance_ORDINAL_NUMBER is best suited to numbers. Use nuance_GENERIC_ORDER when you want to include both ordinal numbers and words like ’last’, ’next’, ‘previous’, and so on.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
}
Feedback
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.