forked from CesiumGS/3d-tiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
asset.schema.json
25 lines (25 loc) · 890 Bytes
/
asset.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
{
"$schema" : "http://json-schema.org/draft-04/schema",
"id" : "asset.schema.json",
"title" : "Asset",
"type" : "object",
"description" : "Metadata about the entire tileset.",
"properties" : {
"version" : {
"type" : "string",
"description" : "The 3D Tiles version. The version defines the JSON schema for tileset.json and the base set of tile formats."
},
"tilesetVersion" : {
"type" : "string",
"description" : "Application-specific version of this tileset, e.g., for when an existing tileset is updated."
},
"gltfUpAxis" : {
"type" : "string",
"description" : "Specifies the up-axis of glTF models.",
"enum" : ["X", "Y", "Z"],
"default" : "Y"
}
},
"required" : ["version"],
"additionalProperties" : false
}