me.benswift.transparencyStatement
Schema Diff
+1 -1
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "me.benswift.transparencyStatement",
3
3
"defs": {
4
4
"main": {
5
5
"key": "any",
6
6
"type": "record",
7
7
"record": {
8
8
"type": "object",
9
9
"required": [
10
10
"abbr",
11
11
"name",
12
12
"sourceUrl",
13
13
"document",
14
14
"firstObservedAt",
15
15
"contentHash",
16
16
"revisionCount"
17
17
],
18
18
"properties": {
19
19
"abbr": {
20
20
"type": "string",
21
21
"maxLength": 64,
22
22
"description": "The tracker's abbreviation for the agency (also this record's key)."
23
23
},
24
24
"name": {
25
25
"type": "string",
26
26
"maxLength": 3000,
27
27
"description": "Full name of the agency.",
28
28
"maxGraphemes": 300
29
29
},
30
30
"document": {
31
31
"type": "string",
32
32
"format": "at-uri",
33
33
"description": "AT-URI of the site.standard.document carrying the statement's current full text."
34
34
},
35
35
"sourceUrl": {
36
36
"type": "string",
37
37
"format": "uri",
38
38
"description": "Canonical URL of the statement on the agency's own website."
39
39
},
40
40
"contentHash": {
41
41
"type": "string",
42
42
"description": "sha256 (hex) of the statement's current markdown body."
43
43
},
44
44
"lastChangedAt": {
45
45
"type": "string",
46
46
"format": "datetime",
47
47
"description": "When the tracker last observed a substantive change (scrape noise excluded)."
48
48
},
49
49
"revisionCount": {
50
50
"type": "integer",
51
51
"minimum": 1,
52
52
"description": "Number of revisions the tracker has recorded, including the initial capture."
53
53
},
54
54
"firstObservedAt": {
55
55
"type": "string",
56
56
"format": "datetime",
57
57
"description": "When the tracker first captured this statement (not when the agency first published it)."
58
58
}
59
59
}
60
60
},
61
61
"description": "The current state of one agency's AI transparency statement. The record key is the tracker's agency abbreviation (e.g. ABS, ACCC), matching the tracker's /statements/{abbr} page."
62
62
}
63
63
},
64
64
"$type": "com.atproto.lexicon.schema",
65
65
"lexicon": 1,
66
-
"description": "An Australian Government agency's AI transparency statement, as tracked by the APS AI Transparency Tracker (https://anucybernetics.github.io/aps-ai-transparency-tracker/). One record per agency, updated in place as the agency revises its statement; the change history lives in the companion me.benswift.transparencyStatementRevision records."
66
+
"description": "An Australian Government agency's AI transparency statement, as tracked by the APS AI Tracker (https://apsaitracker.app/). One record per agency, updated in place as the agency revises its statement; the change history lives in the companion me.benswift.transparencyStatementRevision records."
67
67
}