SnowPlow Micro Schema validation (Iglu) Failed

Hi @ihor, We are able to post good records but, when we tried to add few more fields in the raw data we end up with exceptions. And also, we tried to figure out the schema validation in iglu scala client however we ended up with no luck, We need your help to know where the schema validation is happening for each fields. We observed that there are certain limitation for each fields as we are getting two different error for same field so, we wanted to know where are the limitations provided

Error 1:
curl1:
curl --request POST
–url http://0.0.0.0:9090/com.snowplowanalytics.snowplow/tp2
–header ‘content-type: application/json’
–data ‘{
“schema”: “iglu:com.snowplowanalytics.snowplow/payload_data/jsonschema/1-0-4”,
“data”: [
{
“e”: “pv”,
“tv”: “curl”,
“p”: “srv”,
“sid”: “123456”,
“aid”: “test_appid”,
“url”: “https://www.acme.com”,
“page”: “Homepage”,
“refr”: “https://www.acme.com/smthg
}
]
}’

“errors”: [
“Error while validating the event”,
"{“schema”:“iglu:com.snowplowanalytics.snowplow.badrows/enrichment_failures/jsonschema/2-0-0”,“data”:{“processor”:{“artifact”:“snowplow-micro”,“version”:“1.0.0”},“failure”:{“timestamp”:“2020-10-10T13:48:49.510Z”,“messages”:[{“enrichment”:null,“message”:{“field”:"sid",“value”:“123456”,“expectation”:“not a valid UUID”}}]},“payload”:{“enriched”:{“app_id”:“test_appid”,“platform”:“srv”,“etl_tstamp”:"2020-10-10 13:48:49

ERROR2:

curl --request POST
–url http://0.0.0.0:9090/com.snowplowanalytics.snowplow/tp2
–header ‘content-type: application/json’
–data ‘{
“schema”: “iglu:com.snowplowanalytics.snowplow/payload_data/jsonschema/1-0-4”,
“data”: [
{
“e”: “pv”,
“tv”: “curl”,
“p”: “srv”,
“res”: “12345”,
“aid”: “test_appid”,
“url”: “https://www.acme.com”,
“page”: “Homepage”,
“refr”: “https://www.acme.com/smthg
}
]
}’

“Error while validating the event”,
"{“schema”:“iglu:com.snowplowanalytics.snowplow.badrows/enrichment_failures/jsonschema/2-0-0”,“data”:{“processor”:{“artifact”:“snowplow-micro”,“version”:“1.0.0”},“failure”:{“timestamp”:“2020-10-10T14:10:12.045Z”,“messages”:[{“enrichment”:null,“message”:{“field”:*“res”,“value”:“12345”,“expectation”:“does not conform to regex (\\d+)x(\\d+)”}}]},*