nuance_GENERIC_ORDER
Extends ORDINAL_NUMBER (1st, 2nd, 3rd, …, 31st) to represent special cases for expressing minimum, maximum, previous, successive, and so on.
Sample language
- first
- latest
- second
- thirty first
Schema
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"nuance_GENERIC_ORDER": {
"anyOf": [
{
"type": "string",
"pattern": "[min|max|succ|prec|penultimate]"
},
{
"type": "number"
}
]
}
},
"required": [
"nuance_GENERIC_ORDER"
],
"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.