blue.atroom.room.object
Schema Diff
+1 -1
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "blue.atroom.room.object",
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
"name",
11
11
"model",
12
12
"scale",
13
13
"createdAt"
14
14
],
15
15
"properties": {
16
16
"name": {
17
17
"type": "string",
18
18
"maxLength": 100
19
19
},
20
20
"model": {
21
21
"type": "blob",
22
22
"accept": [
23
23
"model/gltf-binary"
24
24
],
25
-
"maxSize": 10485760
25
+
"maxSize": 1048576
26
26
},
27
27
"scale": {
28
28
"type": "integer",
29
29
"maximum": 1000,
30
30
"minimum": 1
31
31
},
32
32
"createdAt": {
33
33
"type": "string",
34
34
"format": "datetime"
35
35
},
36
36
"nameLangs": {
37
37
"type": "array",
38
38
"items": {
39
39
"ref": "#localizedName",
40
40
"type": "ref"
41
41
}
42
42
}
43
43
}
44
44
},
45
45
"description": "A 3D object that can be placed in a room."
46
46
},
47
47
"localizedName": {
48
48
"type": "object",
49
49
"required": [
50
50
"lang",
51
51
"value"
52
52
],
53
53
"properties": {
54
54
"lang": {
55
55
"type": "string",
56
56
"maxLength": 16
57
57
},
58
58
"value": {
59
59
"type": "string",
60
60
"maxLength": 100
61
61
}
62
62
}
63
63
}
64
64
},
65
65
"$type": "com.atproto.lexicon.schema",
66
66
"lexicon": 1
67
67
}