How to validate jsonschema with a titled pattern, e.g. words start with uppercase characters, all remaining cased characters have lowercase.
My attempt so far does almost work, only there is a required space on the tail:
^([A-Z][a-z]+ )+$
How to validate jsonschema with a titled pattern, e.g. words start with uppercase characters, all remaining cased characters have lowercase.
My attempt so far does almost work, only there is a required space on the tail:
^([A-Z][a-z]+ )+$