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