garden.lexicon.example
Schema Diff
+1 -0
Compatibility Analysis
Breaking Changes Detected
1 breaking change, 0 non-breaking changes.
Breaking Changes (1)
- ConstraintAdded ConstraintAdded { vertex_id: "garden.lexicon.example:body.description", sort: "maxLength", value: "10000" }
Migration Guidance
Constraint Changes
- ConstraintAdded ConstraintAdded { vertex_id: "garden.lexicon.example:body.description", sort: "maxLength", value: "10000" }
1
1
{
2
2
"id": "garden.lexicon.example",
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
"lexicon",
11
11
"value",
12
12
"createdAt"
13
13
],
14
14
"properties": {
15
15
"value": {
16
16
"type": "unknown",
17
17
"description": "The example itself."
18
18
},
19
19
"lexicon": {
20
20
"type": "string",
21
21
"format": "nsid",
22
22
"description": "The NSID that the example is of."
23
23
},
24
24
"createdAt": {
25
25
"type": "string",
26
26
"format": "datetime",
27
27
"description": "The user-supplied date and time the example was created."
28
28
},
29
29
"description": {
30
30
"type": "string",
31
+
"maxLength": 10000,
31
32
"description": "A description of the example."
32
33
}
33
34
}
34
35
},
35
36
"description": "An example value for a lexicon schema"
36
37
}
37
38
},
38
39
"$type": "com.atproto.lexicon.schema",
39
40
"lexicon": 1
40
41
}