Skip to content

Commit

Permalink
Merge pull request #1313 from snowplow/release/r145
Browse files Browse the repository at this point in the history
Release R145
  • Loading branch information
jbeemster authored Aug 9, 2023
2 parents 3eddc57 + f887650 commit a6b202b
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 4 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
Release 162 (2021-06-22)
Release 145 (2023-08-04)
------------------------
Add com.google.privacysandbox/topics/jsonschema/1-0-0 (close #1318)
Remove com.snowplowanalytics.snowplow.media/player/jsonschema/1-0-0 (close #1321)
Add com.snowplowanalytics.snowplow/media_player/jsonschema/2-0-0 (close #1322)

Release 144 (2023-06-22)
------------------------
Add com.vimeo/meta/jsonschema/1-0-0 (close #1265)
Add com.vimeo/interactive_overlay_panel_click_event/jsonschema/1-0-0 (close #1307)
Expand Down
36 changes: 36 additions & 0 deletions schemas/com.google.privacysandbox/topics/jsonschema/1-0-0
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
"$schema": "http://iglucentral.com/schemas/com.snowplowanalytics.self-desc/schema/jsonschema/1-0-0#",
"self": {
"vendor": "com.google.privacysandbox",
"name": "topics",
"version": "1-0-0",
"format": "jsonschema"
},
"description": "Privacy Sandbox Topics. You can learn more at https://developer.chrome.com/docs/privacy-sandbox/topics/",
"type": "object",
"properties": {
"topics": {
"type": [ "array", "null"],
"items": {
"type": "object",
"description": "Topic entry",
"properties": {
"topic": {
"description": "Number identifying the topic in the taxonomy list. See more at https://github.com/patcg-individual-drafts/topics/blob/main/taxonomy_v1.md",
"type": ["number", "null"],
"maximum": 9999999,
"minimum": 0
},
"version": {
"description": "A version identifier combining information about the model, taxonomy version and configuration used to calculate the topics concatenated with ':'. E.g. chrome.1:1:1",
"type": ["string", "null"],
"maxLength": 36
}
},
"additionalProperties": false
},
"description": "Array of Topics"
}
},
"additionalProperties": false
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
"$schema": "http://iglucentral.com/schemas/com.snowplowanalytics.self-desc/schema/jsonschema/1-0-0#",
"description": "Schema for a context entity for media events that describes the media player and playback state",
"self": {
"vendor": "com.snowplowanalytics.snowplow.media",
"name": "player",
"vendor": "com.snowplowanalytics.snowplow",
"name": "media_player",
"format": "jsonschema",
"version": "1-0-0"
"version": "2-0-0"
},
"type": "object",
"properties": {
Expand Down

0 comments on commit a6b202b

Please sign in to comment.