-
Notifications
You must be signed in to change notification settings - Fork 0
/
nests.schema.json
72 lines (72 loc) · 2.03 KB
/
nests.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
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"nests": {
"type": "object",
"propertyNames": {
"pattern": "^[a-zA-Z0-9]([a-zA-Z0-9_])+$"
},
"additionalProperties": {
"type": "object",
"properties": {
"name": {
"type": "string",
"not": {
"pattern": "\\bor\\b",
"description": "If there are multiple names in use, pick one, rather than joining both names together with 'or'."
}
},
"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
}
},
"description": {
"type": "string"
}
},
"required": [
"name",
"art_file",
"photo_files",
"description"
],
"additionalProperties": false
}
}
},
"required": [
"nests"
],
"additionalProperties": false
}