-
Notifications
You must be signed in to change notification settings - Fork 114
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add events to enrichment settings file (Closes #806)
- Loading branch information
1 parent
a65bd95
commit 111a587
Showing
13 changed files
with
1,153 additions
and
0 deletions.
There are no files selected for viewing
173 changes: 173 additions & 0 deletions
173
...com.snowplowanalytics.snowplow.enrichments/api_request_enrichment_config/jsonschema/1-0-1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,173 @@ | ||
{ | ||
"$schema": "http://iglucentral.com/schemas/com.snowplowanalytics.self-desc/schema/jsonschema/1-0-0#", | ||
"description": "Schema for API Request Enrichment configuration", | ||
"self": { | ||
"vendor": "com.snowplowanalytics.snowplow.enrichments", | ||
"name": "api_request_enrichment_config", | ||
"format": "jsonschema", | ||
"version": "1-0-1" | ||
}, | ||
|
||
"type": "object", | ||
"properties": { | ||
"vendor": { | ||
"type": "string" | ||
}, | ||
"name": { | ||
"type": "string" | ||
}, | ||
"enabled": { | ||
"type": "boolean" | ||
}, | ||
"events" : { | ||
"type" : [ "array", "null" ], | ||
"items" : { | ||
"type" : "string" | ||
}, | ||
"description": "Run this enrichment for the event names in the list. Use null to disable" | ||
}, | ||
"parameters": { | ||
"type": "object", | ||
"properties": { | ||
"inputs": { | ||
"type": "array", | ||
"items": { | ||
"type": "object", | ||
"properties": { | ||
"key": { | ||
"type": "string", | ||
"pattern": "^[A-Za-z0-9_-]+$" | ||
}, | ||
"pojo": { | ||
"type": "object", | ||
"properties": { | ||
"field": { | ||
"type": "string" | ||
} | ||
}, | ||
"additionalProperties": false | ||
}, | ||
"json": { | ||
"type": "object", | ||
"properties": { | ||
"field": { | ||
"type": "string", | ||
"enum": ["unstruct_event", "contexts", "derived_contexts"] | ||
}, | ||
"schemaCriterion": { | ||
"type": "string", | ||
"pattern": "^iglu:[a-zA-Z0-9-_.]+/[a-zA-Z0-9-_]+/[a-zA-Z0-9-_]+/([1-9][0-9]*|\\*)-((?:0|[1-9][0-9]*)|\\*)-((?:0|[1-9][0-9]*)|\\*)$" | ||
}, | ||
"jsonPath": { | ||
"type": "string", | ||
"pattern": "^\\$.*$" | ||
} | ||
}, | ||
"additionalProperties": false | ||
} | ||
}, | ||
"additionalProperties": false, | ||
"minProperties": 2, | ||
"maxProperties": 2, | ||
"required": ["key"] | ||
} | ||
}, | ||
"api": { | ||
"type": "object", | ||
"minProperties": 1, | ||
"maxProperties": 1, | ||
"properties": { | ||
"http": { | ||
"type": "object", | ||
"properties": { | ||
"method": { | ||
"type": "string", | ||
"enum": ["GET", "POST", "PUT"] | ||
}, | ||
"uri": { | ||
"type": "string" | ||
}, | ||
"timeout": { | ||
"type": "integer", | ||
"minimum": 1, | ||
"maximum": 60000 | ||
}, | ||
"authentication": { | ||
"type": "object", | ||
"properties": { | ||
"httpBasic": { | ||
"type": "object", | ||
"properties": { | ||
"username": { | ||
"type": "string" | ||
}, | ||
"password": { | ||
"type": "string" | ||
} | ||
}, | ||
"required": ["username", "password"], | ||
"additionalProperties": false | ||
} | ||
}, | ||
"additionalProperties": false | ||
} | ||
}, | ||
"required": ["method", "uri", "timeout", "authentication"], | ||
"additionalProperties": false | ||
} | ||
}, | ||
"additionalProperties": false | ||
}, | ||
"outputs": { | ||
"type": "array", | ||
"minItems": 1, | ||
"items": { | ||
"type": "object", | ||
"properties": { | ||
"schema": { | ||
"type": "string", | ||
"pattern": "^iglu:([a-zA-Z0-9-_.]+)/([a-zA-Z0-9-_]+)/([a-zA-Z0-9-_]+)/([1-9][0-9]*(?:-(?:0|[1-9][0-9]*)){2})$" | ||
}, | ||
"json": { | ||
"type": "object", | ||
"properties": { | ||
"jsonPath": { | ||
"type": "string", | ||
"pattern": "^\\$.*$" | ||
} | ||
}, | ||
"required": ["jsonPath"], | ||
"additionalProperties": false | ||
} | ||
}, | ||
"required": ["schema"], | ||
"minProperties": 2, | ||
"maxProperties": 2, | ||
"additionalProperties": false | ||
} | ||
}, | ||
"cache": { | ||
"type": "object", | ||
"properties": { | ||
"size": { | ||
"type": "integer", | ||
"minimum": 1 | ||
}, | ||
"ttl": { | ||
"type": "integer", | ||
"minimum": 0, | ||
"maximum": 86400 | ||
} | ||
}, | ||
"additionalProperties": false, | ||
"required": ["size", "ttl"] | ||
} | ||
}, | ||
"additionalProperties": false, | ||
"required": ["inputs", "api", "outputs", "cache"] | ||
} | ||
}, | ||
"additionalProperties": false, | ||
"required": ["name", "vendor", "enabled", "parameters"] | ||
} | ||
|
42 changes: 42 additions & 0 deletions
42
.../com.snowplowanalytics.snowplow.enrichments/http_header_extractor_config/jsonschema/1-0-1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
{ | ||
"$schema": "http://iglucentral.com/schemas/com.snowplowanalytics.self-desc/schema/jsonschema/1-0-0#", | ||
"description": "Schema for HTTP header extractor enrichment", | ||
"self": { | ||
"vendor": "com.snowplowanalytics.snowplow.enrichments", | ||
"name": "http_header_extractor_config", | ||
"format": "jsonschema", | ||
"version": "1-0-1" | ||
}, | ||
|
||
"type": "object", | ||
"properties": { | ||
"vendor": { | ||
"type": "string" | ||
}, | ||
"name": { | ||
"type": "string" | ||
}, | ||
"enabled": { | ||
"type": "boolean" | ||
}, | ||
"events" : { | ||
"type" : [ "array", "null" ], | ||
"items" : { | ||
"type" : "string" | ||
}, | ||
"description": "Run this enrichment for the event names in the list. Use null to disable" | ||
}, | ||
"parameters": { | ||
"type": "object", | ||
"properties": { | ||
"headersPattern": { | ||
"type": "string" | ||
} | ||
}, | ||
"required": ["headersPattern"], | ||
"additionalProperties": false | ||
} | ||
}, | ||
"required": ["name", "vendor", "enabled", "parameters"], | ||
"additionalProperties": false | ||
} |
102 changes: 102 additions & 0 deletions
102
...snowplowanalytics.snowplow.enrichments/iab_spiders_and_robots_enrichment/jsonschema/1-0-1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
{ | ||
"$schema": "http://iglucentral.com/schemas/com.snowplowanalytics.self-desc/schema/jsonschema/1-0-0#", | ||
"description": "Schema for IAB Spiders & Robots enrichment config", | ||
"self": { | ||
"vendor": "com.snowplowanalytics.snowplow.enrichments", | ||
"name": "iab_spiders_and_robots_enrichment", | ||
"format": "jsonschema", | ||
"version": "1-0-1" | ||
}, | ||
|
||
"type": "object", | ||
"properties": { | ||
"vendor": { | ||
"type": "string" | ||
}, | ||
"name": { | ||
"type": "string" | ||
}, | ||
"enabled": { | ||
"type": "boolean" | ||
}, | ||
"events" : { | ||
"type" : [ "array", "null" ], | ||
"items" : { | ||
"type" : "string" | ||
}, | ||
"description": "Run this enrichment for the event names in the list. Use null to disable" | ||
}, | ||
"parameters": { | ||
"type": "object", | ||
"properties": { | ||
"ipFile": { | ||
"description": "Path to IP address exclude file", | ||
"type": "object", | ||
"properties": { | ||
"database": { | ||
"enum": ["ip_exclude_current_cidr.txt"] | ||
}, | ||
"uri": { | ||
"type": "string", | ||
"format": "uri" | ||
} | ||
}, | ||
"required": ["database", "uri"] | ||
}, | ||
"excludeUseragentFile": { | ||
"description": "Path to user agent exclude file", | ||
"type": "object", | ||
"properties": { | ||
"database": { | ||
"enum": ["exclude_current.txt"] | ||
}, | ||
"uri": { | ||
"type": "string", | ||
"format": "uri" | ||
} | ||
}, | ||
"required": ["database", "uri"] | ||
}, | ||
"includeUseragentFile": { | ||
"description": "Path to user agent include file", | ||
"type": "object", | ||
"properties": { | ||
"database": { | ||
"enum": ["include_current.txt"] | ||
}, | ||
"uri": { | ||
"type": "string", | ||
"format": "uri" | ||
} | ||
}, | ||
"required": ["database", "uri"] | ||
}, | ||
"httpUsername": { | ||
"description": "Optional username for basic HTTP authentication", | ||
"type": "string" | ||
}, | ||
"httpPassword": { | ||
"description": "Optional password for basic HTTP authentication", | ||
"type": "string" | ||
} | ||
}, | ||
"required": [ | ||
"ipFile", | ||
"excludeUseragentFile", | ||
"includeUseragentFile" | ||
], | ||
"dependencies": { | ||
"httpUsername": ["httpPassword"], | ||
"httpPassword": ["httpUsername"] | ||
}, | ||
"additionalProperties": false | ||
} | ||
}, | ||
"required": [ | ||
"vendor", | ||
"name", | ||
"enabled", | ||
"parameters" | ||
], | ||
"additionalProperties": false | ||
} |
Oops, something went wrong.