I have set up custom events and uploaded their schemas to an S3 bucket as per the documentation. Here is my resolver file:
{
"schema": "iglu:com.snowplowanalytics.iglu/resolver-config/jsonschema/1-0-0",
"data": {
"cacheSize": 500,
"repositories": [
{
"name": "Iglu Central",
"priority": 0,
"vendorPrefixes": [ "com.snowplowanalytics" ],
"connection": {
"http": {
"uri": "http://iglucentral.com"
}
}
},
{
"name": "Rocketmiles",
"priority": 0,
"vendorPrefixes": ["noonu"],
"connection": {
"http": {
"uri": "http://snowplow-rocketmiles-iglu-schemas.s3-website-us-east-1.amazonaws.com"
}
}
}
]
}
}
However I get this error in the “enriched/bad” folder:
"errors":[{"level":"error","message":"Payload with vendor noonu and version tp2 not supported by this version of Scala Common Enrich"}]
shouldn’t the vendor prefix and vendor on my schemas take care of this?