Hi guys,
I’m in the first experiments using Snowplow Mini for tracking pixel and link click events, so noob alert
Example:
<img src="http://xxx/i?e=ue&cid=53450&nid=2446468&uid=12345678" alt="Snowplow Mini" width="1" height="1" />`
and
`<a href="http://xxx/r/tp2?e=ue&cid=53450&nid=2446468&uid=12345678&u=http%3A%2F%2Fwww.xxx.com%2F%3Fname%3DThomas">Snowplow Mini Link</a>
Kibana returned it as bad result:
{"level":"error","message":"Field [eid]: [2446468] is not a valid UUID"},{"level":"error","message":"Unstructured event couldn't be extracted"}
Then I’ve submited some changes to the schemas and also replaced “eid” to “nid” since “eid” seems a reserved variable for Snowplow.
Current schema for tracking a pixel impression:
{
"$schema": "http://iglucentral.com/schemas/com.snowplowanalytics.self-desc/schema/jsonschema/1-0-0#",
"description": "Schema for open tracking event",
"self": {
"vendor": "com.xxx",
"name": "open",
"version": "1-0-1",
"format": "jsonschema"
},
"type": "object",
"properties": {
"cid": {
"type": "string"
},
"nid": {
"type": "string"
},
"uid": {
"type": "string"
}
},
"additionalProperties": true
}
Now, after a few tries finding the right schema within Iglu it does still returns:
{“level”:“error”,“message”:“Unstructured event couldn’t be extracted”}
Any help?
Also, since there isn’t any DELETE method in the Iglu schema repository, is there a way to delete previous schemas uploaded?
Thanks!