Skip to content

Commit

Permalink
Merge pull request #1371 from snowplow/release/r153
Browse files Browse the repository at this point in the history
Release R153
  • Loading branch information
jbeemster committed Feb 13, 2024
2 parents 1be7a2c + 16f1ff6 commit 7716286
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
Release 153 (2024-02-12)
------------------------
Add com.snowplowanalytics.snowplow/javascript_script_config/jsonschema/1-0-1 (#1370)

Release 152 (2024-01-22)
------------------------
Add com.apple.swiftui/dismiss_immersive_space/jsonschema/1-0-0 (#1367)
Expand Down
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
}

0 comments on commit 7716286

Please sign in to comment.