Skip to content

Commit

Permalink
add additional pixel schemas (#556)
Browse files Browse the repository at this point in the history
  • Loading branch information
jakthom committed May 3, 2023
1 parent 5f6caf6 commit 52d90b8
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 0 deletions.
27 changes: 27 additions & 0 deletions schemas/io.silverton/buz/pixel/linkClick/v1.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"$schema": "https://r.buz.dev/s/io.silverton/buz/internal/meta/v1.0.json",
"$id": "io.silverton/buz/pixel/linkClick/v1.0.json",
"title": "io.silverton/buz/pixel/linkClick/v1.0.json",
"description": "A generalized schema for link clicks tracked via pixel",
"owner": {
"org": "silverton",
"team": "buz",
"individual": "jakthom"
},
"self": {
"vendor": "io.silverton",
"namespace": "buz.pixel.linkClick",
"version": "1.0"
},
"type": "object",
"properties": {
"link": {
"type": "string",
"description": "The link"
}
},
"additionalProperties": true,
"required": [
"link"
]
}
27 changes: 27 additions & 0 deletions schemas/io.silverton/buz/pixel/pageView/v1.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"$schema": "https://r.buz.dev/s/io.silverton/buz/internal/meta/v1.0.json",
"$id": "io.silverton/buz/pixel/pageView/v1.0.json",
"title": "io.silverton/buz/pixel/pageView/v1.0.json",
"description": "A generalized schema for page views tracked via pixel",
"owner": {
"org": "silverton",
"team": "buz",
"individual": "jakthom"
},
"self": {
"vendor": "io.silverton",
"namespace": "buz.pixel.pageView",
"version": "1.0"
},
"type": "object",
"properties": {
"page": {
"type": "string",
"description": "The page"
}
},
"additionalProperties": true,
"required": [
"page"
]
}

0 comments on commit 52d90b8

Please sign in to comment.