-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbees.schema.json
163 lines (163 loc) · 4.68 KB
/
bees.schema.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"bees": {
"type": "object",
"propertyNames": {
"pattern": "^[a-zA-Z0-9]([a-zA-Z0-9_])+$"
},
"additionalProperties": {
"type": "object",
"properties": {
"name": {
"description": "This flower's common name.",
"type": "string",
"not": {
"pattern": "\\bor\\b",
"description": "If there are two common names, pick one, rather than joining both together with the word 'or'."
}
},
"sci_name": {
"description": "This flower's scientific name.",
"type": "string",
"pattern": "^[A-Z][a-zäëïöüÿ\\-]* [a-z][a-zäëïöüÿ\\-]+$",
"$comment": "See https://www.iapt-taxon.org/nomen/pages/main/art_60.html for the precise structure of scientific names."
},
"relative_size": {
"description": "Roughly how large this bee is compared to an average bee. 1 is normal, 0.1 is small, and 3 is big.",
"type": "number",
"minimum": 0,
"maximum": 3
},
"flowers_accepted": {
"description": "Which flowers this bee gets its pollen from.",
"type": "array",
"uniqueItems": true,
"items": {
"type": "string"
}
},
"art_file": {
"type": "string",
"pattern": "^[0-9a-zA-Z\\._-]+.(png|PNG|jp[e]?g|JP[E]?G|tif[f]?|TIF[F]?)$"
},
"photo_files": {
"type": "array",
"uniqueItems": true,
"items": {
"type": "object",
"properties": {
"filename": {
"type": "string",
"pattern": "^[0-9a-zA-Z\\._-]+.(png|PNG|jp[e]?g|JP[E]?G|tif[f]?|TIF[F]?)$"
},
"attribution": {
"type": "string"
},
"caption": {
"type": "string"
},
"image_link": {
"type": "string",
"format": "uri"
}
},
"required": [
"filename",
"attribution",
"caption",
"image_link"
],
"additionalProperties": false
}
},
"active_period": {
"description": "A date range when you can find this bee species in Minnesota, in the form of ISO 8601 fragments like `--05-01/--06-30`.",
"type": "string",
"pattern": "--\\d\\d-\\d\\d/--\\d\\d-\\d\\d"
},
"description": {
"type": "object",
"properties": {
"genus": {
"type": "string"
},
"sociality": {
"type": "string"
},
"nesting": {
"type": "string"
},
"pollen_collection": {
"type": "string"
},
"activity": {
"type": "string"
},
"species": {
"type": "string"
},
"brood": {
"type": "string"
},
"forage": {
"type": "string"
},
"features": {
"type": "string"
},
"did_you_know": {
"type": "string"
},
"chosen_bee": {
"type": "string"
}
},
"required": [],
"additionalProperties": false
},
"nest_type": {
"type": "string",
"enum": [
"cavity",
"pithy_stem",
"ground_bare",
"ground_grass",
"rotting_wood",
"bumble_bee_nest",
"honey_bee_house"
]
},
"sociality": {
"type": "string",
"enum": [
"social",
"solitary",
"primitively_social",
"eusocial",
"communal"
]
}
},
"required": [
"name",
"sci_name",
"relative_size",
"flowers_accepted",
"art_file",
"photo_files",
"active_period",
"description",
"nest_type",
"sociality"
],
"additionalProperties": false
}
}
},
"required": [
"bees"
],
"additionalProperties": false
}