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