-
Notifications
You must be signed in to change notification settings - Fork 2
/
cmap-schema.json
80 lines (80 loc) · 2.26 KB
/
cmap-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
{
"$schema": "http://json-schema.org/schema#",
"$id": "https://legumefederation.org/schemas/cmap.json",
"title" : "cmap-js schema",
"description" : "For more info, see https://github.com/ncgr/cmap-js",
"type" : "object",
"definitions" : {
"filter" : {
"type" : "object",
"properties" : {
"column" : { "type" : "string" },
"not" : { "type" : "boolean" },
"operator" : { "enum" : [ "equals", "regex" ] },
"value" : { "type" : "string" }
},
"required" : ["column", "operator", "value"]
},
"linkout" : {
"type" : "object",
"properties" : {
"featuretype" : { "type" : "string" },
"featuretypePattern" : { "type" : "string" },
"url" : { "type" : "string" },
"text" : { "type" : "string" },
"isLinkingService" : { "type" : "boolean", "default" : false }
},
"required" : ["url"],
"oneOf": [{"required" : ["featuretype"]}, {"required" : ["featuretypePattern"]}]
}
},
"properties" : {
"#" : { "type" : "string"},
"header" : { "type" : "string"},
"attribution" : { "type" : "string" },
"initialView" : {
"type" : "array",
"items" : {
"type": "object",
"properties" : {
"source" : { "type" : "string" },
"map" : { "type" : "string" },
"filters" : {
"type" : "array",
"items" : {
"$ref" : "#/definitions/filter"
}
}
},
"required" : ["source", "map"]
}
},
"sources" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"#" : { "type": "string" },
"id" : { "type" : "string" },
"method" : { "type" : "string"},
"data" : { "type" : "object" },
"url" : { "type" : "string" },
"filters" : {
"type" : "array",
"items" : {
"$ref" : "#/definitions/filter"
}
},
"linkouts" : {
"type" : "array",
"items" : {
"$ref" : "#/definitions/linkout"
}
}
},
"required" : ["url", "method", "id"]
}
}
},
"required": ["header", "attribution", "sources"]
}