media.ionosphere.group
Schema Diff
+12 -7
1
1
{
2
2
"id": "media.ionosphere.group",
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
"ionosphere",
11
11
"name",
12
12
"language"
13
13
],
14
14
"properties": {
15
15
"icon": {
16
16
"type": "blob",
17
17
"accept": [
18
18
"image/*"
19
19
]
20
20
},
21
21
"name": {
22
22
"type": "string",
23
23
"maxGraphemes": 128
24
24
},
25
25
"genres": {
26
26
"type": "array",
27
27
"items": {
28
28
"ref": "media.ionosphere.defs#genre",
29
29
"type": "ref"
30
30
}
31
31
},
32
-
"parent": {
33
-
"type": "string",
34
-
"format": "at-uri"
35
-
},
36
32
"keywords": {
37
33
"type": "array",
38
34
"items": {
39
35
"type": "string",
40
36
"maxLength": 128
41
37
}
42
38
},
43
39
"language": {
44
40
"type": "string",
45
-
"format": "language"
41
+
"format": "language",
42
+
"description": "The language of the string values in this record. NOT the language of the content"
46
43
},
44
+
"memberOf": {
45
+
"type": "array",
46
+
"items": {
47
+
"type": "string",
48
+
"format": "at-uri"
49
+
},
50
+
"description": "A list of groups this record is a member of"
51
+
},
47
52
"ionosphere": {
48
53
"type": "string",
49
-
"default": "1.0.0",
50
-
"maxLength": 128
54
+
"maxLength": 128,
55
+
"description": "Version identifier"
51
56
},
52
57
"description": {
53
58
"type": "string",
54
59
"maxLength": 512
55
60
}
56
61
}
57
62
},
58
63
"description": "Represents a grouping of subgroups or programmes"
59
64
}
60
65
},
61
66
"$type": "com.atproto.lexicon.schema",
62
67
"lexicon": 1
63
68
}