Skip to content

Commit

Permalink
Add com.google.tag-manager.server-side/post_score/jsonschema/1-0-0 (c…
Browse files Browse the repository at this point in the history
…lose #1377)
  • Loading branch information
adatzer committed Feb 13, 2024
1 parent e256aaa commit b225d30
Showing 1 changed file with 28 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"$schema": "http://iglucentral.com/schemas/com.snowplowanalytics.self-desc/schema/jsonschema/1-0-0#",
"self": {
"vendor": "com.google.tag-manager.server-side",
"name": "post_score",
"version": "1-0-0",
"format": "jsonschema"
},
"description": "Send this event when the user posts a score. Use this event to understand how users are performing in your game and correlate high scores with audiences or behaviors.",
"type": "object",
"properties": {
"score": {
"description": "The score to post.",
"type": ["number", "null"]
},
"level": {
"description": "The level for the score.",
"type": ["number", "null"]
},
"character": {
"description": "The character that achieved the score.",
"type": ["string", "null"],
"maxLength": 4096
}
},
"required": ["score"],
"additionalProperties": false
}

0 comments on commit b225d30

Please sign in to comment.