-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1371 from snowplow/release/r153
Release R153
- Loading branch information
Showing
2 changed files
with
42 additions
and
0 deletions.
There are no files selected for viewing
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
38 changes: 38 additions & 0 deletions
38
schemas/com.snowplowanalytics.snowplow/javascript_script_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,38 @@ | ||
{ | ||
"$schema": "http://iglucentral.com/schemas/com.snowplowanalytics.self-desc/schema/jsonschema/1-0-0#", | ||
"description": "Schema for configuration of a JavaScript dynamic scripting enrichment", | ||
"self": { | ||
"vendor": "com.snowplowanalytics.snowplow", | ||
"name": "javascript_script_config", | ||
"format": "jsonschema", | ||
"version": "1-0-1" | ||
}, | ||
|
||
"type": "object", | ||
"properties": { | ||
"vendor": { | ||
"type": "string" | ||
}, | ||
"name": { | ||
"type": "string" | ||
}, | ||
"enabled": { | ||
"type": "boolean" | ||
}, | ||
"parameters": { | ||
"type": "object", | ||
"properties": { | ||
"script": { | ||
"type": "string" | ||
}, | ||
"config": { | ||
"type": "object" | ||
} | ||
}, | ||
"required": ["script"], | ||
"additionalProperties": false | ||
} | ||
}, | ||
"required": ["name", "vendor", "enabled", "parameters"], | ||
"additionalProperties": false | ||
} |