Skip to content

Commit

Permalink
Merge pull request #1359 from snowplow/release/r150
Browse files Browse the repository at this point in the history
Release R150
  • Loading branch information
jbeemster authored Dec 1, 2023
2 parents d4156e1 + fcd4fd2 commit 12c3dad
Show file tree
Hide file tree
Showing 2 changed files with 54 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 150 (2023-11-29)
------------------------
Add com.snowplowanalytics.snowplow/button_click/jsonschema/1-0-0 (#1351)

Release 149 (2023-11-10)
------------------------
Add com.google.ga4/cookies/jsonschema/1-0-0 (#1324)
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
{
"$schema": "http://iglucentral.com/schemas/com.snowplowanalytics.self-desc/schema/jsonschema/1-0-0#",
"description": "Schema for a button click event",
"self": {
"vendor": "com.snowplowanalytics.snowplow",
"name": "button_click",
"format": "jsonschema",
"version": "1-0-0"
},
"type": "object",
"properties": {
"label": {
"type": "string",
"description": "The text on the button clicked, or a user-provided override",
"minLength": 1,
"maxLength": 4096
},
"id": {
"description": "The ID of the button clicked, if present",
"type": [
"string",
"null"
],
"maxLength": 4096
},
"classes": {
"description": "An array of class names from the button clicked",
"type": [
"array",
"null"
],
"items": {
"type": "string",
"maxLength": 4096
}
},
"name": {
"description": "The name of the button, if present",
"type": [
"string",
"null"
],
"maxLength": 4096
}
},
"required": [
"label"
],
"additionalProperties": false
}

0 comments on commit 12c3dad

Please sign in to comment.