Hello,
I am trying to setup a JSON schema repository using simple python command:
python -m http.server
But, my enriched JSON is not getting validated. This is the error messge:
error: Could not find schema with key iglu:com.myown/self_describing_schema/jsonschema/1-0-0 in any repository, tried:
level: "error"
repositories: ["Iglu Central [HTTP]","Iglu Client Embedded [embedded]","Iglu MyOwn [HTTP]"]
"}],"failure_tstamp":"2018-02-20T13:20:31.554Z
Here is my iglu_resolver.json
{
"schema": "iglu:com.snowplowanalytics.iglu/resolver-config/jsonschema/1-0-1",
"data": {
"cacheSize": 500,
"repositories": [
{
"name": "Iglu Central",
"priority": 0,
"vendorPrefixes": [ "com.snowplowanalytics" ],
"connection": {
"http": {
"uri": "http://iglucentral.com"
}
}
},
{
"name": "Iglu MyOwn",
"priority": 1,
"vendorPrefixes": [ "com.myown" ],
"connection": {
"http": {
"uri": "http://127.0.0.1"
}
}
}
]
}
}
Can anyone please help me figure out what I might be doing wrong?