Hi All,
We have below definition for one of the fields in the json schema
"UUID": {
"type": "string",
"format": "uuid",
"maxLength": 36,
"title": "UUID"
}
So ideally it should only allow field having the format of UUID. Correct me if I am misstating something.
But when we pass this value in the json request, it does not throw an error. It does not really match against UUID format.
"UUID : "abcd"
I wanted to know whether datapower validates a json message against the format attribute mentioned in the json schema or the regex pattern needs to be mentioned explicitly.
#DataPower#Support#SupportMigration