vrm-no-fs
Version:
Coerces, validates and prettifies vehicle registration marks (VRMs)
31 lines (26 loc) • 397 B
JSON
{
"input": {
"type": "string",
"minLength": 1
},
"allowedFormats": {
"type": "array",
"minItems": 1,
"items": {
"type": "string",
"minLength": 1,
"pattern": "^[a-z0-9_]+$"
}
},
"normalizedVRM": {
"type": "string",
"minLength": 1,
"maxLength": 7,
"pattern": "^[A-Z0-9]+$"
},
"format": {
"type": "string",
"minLength": 1,
"pattern": "^[a-z0-9_]+$"
}
}