forked from CesiumGS/3d-tiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tileset.schema.json
31 lines (31 loc) · 1.05 KB
/
tileset.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
{
"$schema" : "http://json-schema.org/draft-04/schema",
"id" : "tileset.schema.json",
"title" : "Tileset",
"type" : "object",
"description" : "A 3D Tiles tileset.",
"properties" : {
"asset" : {
"$ref" : "asset.schema.json"
},
"properties" : {
"description": "A dictionary object of metadata about per-feature properties.",
"patternProperties" : {
".*": {
"$ref": "properties.schema.json"
}
}
},
"geometricError" : {
"type" : "number",
"description" : "The error, in meters, introduced if this tileset is not rendered. At runtime, the geometric error is used to compute Screen-Space Error (SSE), i.e., the error measured in pixels.",
"minimum" : 0
},
"root" : {
"description" : "The root node.",
"$ref" : "tile.schema.json"
}
},
"required" : ["asset", "geometricError", "root"],
"additionalProperties" : false
}