media.ionosphere.service
Schema Diff
+6 -4
1
1
{
2
2
"id": "media.ionosphere.service",
3
3
"defs": {
4
4
"main": {
5
5
"key": "literal:self",
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
32
"keywords": {
33
33
"type": "array",
34
34
"items": {
35
35
"type": "string",
36
36
"maxLength": 128
37
37
}
38
38
},
39
39
"language": {
40
40
"type": "string",
41
-
"format": "language"
41
+
"format": "language",
42
+
"description": "The language of the string values in this record. NOT the language of the content"
42
43
},
43
44
"broadcast": {
44
45
"type": "array",
45
46
"items": {
46
47
"ref": "media.ionosphere.defs#broadcast",
47
48
"type": "ref"
48
49
}
49
50
},
50
51
"ionosphere": {
51
52
"type": "string",
52
-
"default": "1.0.0",
53
-
"maxLength": 128
53
+
"maxLength": 128,
54
+
"description": "Version identifier"
54
55
},
55
56
"description": {
56
57
"type": "string",
57
58
"maxLength": 128
58
59
},
59
60
"geolocation": {
60
61
"refs": [
61
62
"media.ionosphere.defs#geocoordinates"
62
63
],
63
64
"type": "union"
64
65
},
65
66
"presentationLanguage": {
66
67
"type": "string",
67
-
"format": "language"
68
+
"format": "language",
69
+
"description": "This is the language that the content is actually presented in. If multiple, choose to omit this."
68
70
}
69
71
}
70
72
},
71
73
"description": "Represents the service belonging to this PDS"
72
74
}
73
75
},
74
76
"$type": "com.atproto.lexicon.schema",
75
77
"lexicon": 1
76
78
}