-
Notifications
You must be signed in to change notification settings - Fork 1
/
schema.config.json
37 lines (34 loc) · 1.24 KB
/
schema.config.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
{
"$schema": "./schema.json",
"refsDir": "./refs",
"defsDir": "./defs",
"outDir": "./out",
"schemaUrls": {
"Feature": "http://geojson.org/schema/Feature.json",
"FeatureCollection": "http://geojson.org/schema/FeatureCollection.json",
"Geometry": "http://geojson.org/schema/Geometry.json",
"GeometryCollection": "http://geojson.org/schema/GeometryCollection.json",
"LineString": "http://geojson.org/schema/LineString.json",
"MultiLineString": "http://geojson.org/schema/MultiLineString.json",
"MultiPoint": "http://geojson.org/schema/MultiPoint.json",
"MultiPolygon": "http://geojson.org/schema/MultiPolygon.json",
"Point": "http://geojson.org/schema/Point.json",
"Polygon": "http://geojson.org/schema/Polygon.json",
"TileJSON": "https://raw.githubusercontent.com/mapbox/tilejson-spec/master/3.0.0/schema.json"
},
"options": {
"mode": "default",
"jsonCheck": false,
"allErrors": true,
"extraFormats": true,
"includeErrors": true,
"requireSchema": true,
"formatAssertion": true,
"complexityChecks": true,
"removeAdditional": false,
"contentValidation": true,
"requireValidation": true,
"unmodifiedPrototypes": true,
"requireStringValidation": false
}
}