Skip to content

Commit 52d90b8

Browse files
authored
add additional pixel schemas (#556)
1 parent 5f6caf6 commit 52d90b8

File tree

2 files changed

+54
-0
lines changed

2 files changed

+54
-0
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"$schema": "https://r.buz.dev/s/io.silverton/buz/internal/meta/v1.0.json",
3+
"$id": "io.silverton/buz/pixel/linkClick/v1.0.json",
4+
"title": "io.silverton/buz/pixel/linkClick/v1.0.json",
5+
"description": "A generalized schema for link clicks tracked via pixel",
6+
"owner": {
7+
"org": "silverton",
8+
"team": "buz",
9+
"individual": "jakthom"
10+
},
11+
"self": {
12+
"vendor": "io.silverton",
13+
"namespace": "buz.pixel.linkClick",
14+
"version": "1.0"
15+
},
16+
"type": "object",
17+
"properties": {
18+
"link": {
19+
"type": "string",
20+
"description": "The link"
21+
}
22+
},
23+
"additionalProperties": true,
24+
"required": [
25+
"link"
26+
]
27+
}
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"$schema": "https://r.buz.dev/s/io.silverton/buz/internal/meta/v1.0.json",
3+
"$id": "io.silverton/buz/pixel/pageView/v1.0.json",
4+
"title": "io.silverton/buz/pixel/pageView/v1.0.json",
5+
"description": "A generalized schema for page views tracked via pixel",
6+
"owner": {
7+
"org": "silverton",
8+
"team": "buz",
9+
"individual": "jakthom"
10+
},
11+
"self": {
12+
"vendor": "io.silverton",
13+
"namespace": "buz.pixel.pageView",
14+
"version": "1.0"
15+
},
16+
"type": "object",
17+
"properties": {
18+
"page": {
19+
"type": "string",
20+
"description": "The page"
21+
}
22+
},
23+
"additionalProperties": true,
24+
"required": [
25+
"page"
26+
]
27+
}

0 commit comments

Comments
 (0)