-
Notifications
You must be signed in to change notification settings - Fork 113
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 #1313 from snowplow/release/r145
Release R145
- Loading branch information
Showing
3 changed files
with
46 additions
and
4 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
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,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 | ||
} |
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