com.naturesfieldbook.temp.taxon
Schema Diff
+4 -2
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "com.naturesfieldbook.temp.taxon",
3
3
"defs": {
4
4
"main": {
5
5
"key": "tid",
6
6
"type": "record",
7
7
"record": {
8
8
"type": "object",
9
+
"nullable": [
10
+
"parent"
11
+
],
9
12
"required": [
10
13
"createdAt",
11
14
"rank",
12
15
"scientificName",
13
16
"updatedAt"
14
17
],
15
18
"properties": {
16
19
"rank": {
17
20
"type": "string",
18
21
"maxLength": 64,
19
22
"knownValues": [
20
23
"Kingdom",
21
24
"Class",
22
25
"Order",
23
26
"Family",
24
27
"Genus",
25
28
"Species"
26
29
]
27
30
},
28
31
"parent": {
29
32
"ref": "com.atproto.repo.strongRef",
30
-
"type": "ref",
31
-
"nullable": true
33
+
"type": "ref"
32
34
},
33
35
"children": {
34
36
"type": "array",
35
37
"items": {
36
38
"ref": "com.atproto.repo.strongRef",
37
39
"type": "ref"
38
40
}
39
41
},
40
42
"createdAt": {
41
43
"type": "string",
42
44
"format": "datetime"
43
45
},
44
46
"updatedAt": {
45
47
"type": "string",
46
48
"format": "datetime"
47
49
},
48
50
"commonName": {
49
51
"type": "string",
50
52
"maxLength": 256
51
53
},
52
54
"scientificName": {
53
55
"type": "string",
54
56
"maxLength": 256
55
57
}
56
58
}
57
59
},
58
60
"description": "One or more populations of an organism which forms a biological unit."
59
61
}
60
62
},
61
63
"$type": "com.atproto.lexicon.schema",
62
64
"lexicon": 1
63
65
}