-
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.
Merge pull request #1359 from snowplow/release/r150
Release R150
- Loading branch information
Showing
2 changed files
with
54 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
50 changes: 50 additions & 0 deletions
50
schemas/com.snowplowanalytics.snowplow/button_click/jsonschema/1-0-0
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,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 | ||
} |