systems.numina.sensemaking.connection
Schema Diff
+3 -1
Compatibility Analysis
Breaking Changes Detected
2 breaking changes, 0 non-breaking changes.
Breaking Changes (2)
- ConstraintAdded ConstraintAdded { vertex_id: "systems.numina.sensemaking.connection:body.note", sort: "maxLength", value: "5000" }
- ConstraintAdded ConstraintAdded { vertex_id: "systems.numina.sensemaking.connection:body.note", sort: "maxGraphemes", value: "2500" }
Migration Guidance
Constraint Changes
- ConstraintAdded ConstraintAdded { vertex_id: "systems.numina.sensemaking.connection:body.note", sort: "maxLength", value: "5000" }
- ConstraintAdded ConstraintAdded { vertex_id: "systems.numina.sensemaking.connection:body.note", sort: "maxGraphemes", value: "2500" }
1
1
{
2
2
"id": "systems.numina.sensemaking.connection",
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
"source",
11
11
"target",
12
12
"relationship",
13
13
"createdAt"
14
14
],
15
15
"properties": {
16
16
"note": {
17
17
"type": "string",
18
-
"description": "Why this connection exists. The reasoning."
18
+
"maxLength": 5000,
19
+
"description": "Why this connection exists. The reasoning.",
20
+
"maxGraphemes": 2500
19
21
},
20
22
"source": {
21
23
"type": "string",
22
24
"format": "at-uri",
23
25
"description": "AT URI of the observation making the connection."
24
26
},
25
27
"target": {
26
28
"type": "string",
27
29
"format": "at-uri",
28
30
"description": "AT URI of the observation being connected to."
29
31
},
30
32
"createdAt": {
31
33
"type": "string",
32
34
"format": "datetime"
33
35
},
34
36
"relationship": {
35
37
"enum": [
36
38
"supports",
37
39
"contradicts",
38
40
"extends",
39
41
"refines",
40
42
"depends-on",
41
43
"challenges"
42
44
],
43
45
"type": "string",
44
46
"description": "The type of relationship between source and target."
45
47
}
46
48
}
47
49
},
48
50
"description": "An explicit, typed link between two observations. Enables protocol-visible claim relationships."
49
51
}
50
52
},
51
53
"$type": "com.atproto.lexicon.schema",
52
54
"lexicon": 1
53
55
}