Hi,
Here is my json schema:
"image": {
"type": "string",
"pattern": "^((http://|https://)?(www)?)+(.?([\w/]))+.?([\w])+?$"
},
but when I input data like:
{
"image": "htt://www.example.com/1.jpg"
}
It always validates to be TRUE. So regular expression is not supported yet?