fyi.questionable.answer
Schema Diff
+4 -7
1
1
{
2
2
"id": "fyi.questionable.answer",
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
"question",
11
-
"text",
11
+
"content",
12
12
"createdAt"
13
13
],
14
14
"properties": {
15
-
"text": {
16
-
"type": "string",
17
-
"maxLength": 10000,
18
-
"minLength": 1,
19
-
"description": "The full text of the answer",
20
-
"maxGraphemes": 10000
15
+
"content": {
16
+
"ref": "fyi.questionable.richtext.content",
17
+
"type": "ref"
21
18
},
22
19
"question": {
23
20
"ref": "com.atproto.repo.strongRef",
24
21
"type": "ref",
25
22
"description": "Indicates the question to which this is a proposed answer to"
26
23
},
27
24
"createdAt": {
28
25
"type": "string",
29
26
"format": "datetime"
30
27
},
31
28
"languages": {
32
29
"type": "array",
33
30
"items": {
34
31
"type": "string",
35
32
"format": "language"
36
33
},
37
34
"maxLength": 3
38
35
}
39
36
}
40
37
},
41
38
"description": "A proposed answer to a question"
42
39
}
43
40
},
44
41
"$type": "com.atproto.lexicon.schema",
45
42
"lexicon": 1
46
43
}