ca.jmaingot.boardGamePlay
Schema Diff
+6 -6
1
1
{
2
2
"id": "ca.jmaingot.boardGamePlay",
3
3
"defs": {
4
4
"main": {
5
5
"key": "tid",
6
6
"type": "record",
7
7
"record": {
8
8
"type": "object",
9
9
"required": [
10
10
"name",
11
11
"bggId",
12
-
"date"
12
+
"playedAt"
13
13
],
14
14
"properties": {
15
-
"date": {
16
-
"type": "string",
17
-
"format": "datetime",
18
-
"description": "ISO 8601 date string"
19
-
},
20
15
"name": {
21
16
"type": "string",
22
17
"maxlength": 256
23
18
},
24
19
"bggId": {
25
20
"type": "string",
26
21
"maxlength": 32,
27
22
"description": "corresponds to https://boardgamegeek.com/boardgame/<bggId> for the game"
23
+
},
24
+
"playedAt": {
25
+
"type": "string",
26
+
"format": "datetime",
27
+
"description": "ISO 8601 date string"
28
28
}
29
29
}
30
30
},
31
31
"description": "A single board game play"
32
32
}
33
33
},
34
34
"$type": "com.atproto.lexicon.schema",
35
35
"lexicon": 1
36
36
}