forked from KhronosGroup/glTF
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnodeInstanceSkin.schema.json
32 lines (32 loc) · 1.01 KB
/
nodeInstanceSkin.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
{
"$schema" : "http://json-schema.org/draft-03/schema",
"title" : "node/instanceSkin",
"type" : "object",
"extends" : { "$ref" : "glTFProperty.schema.json" },
"properties": {
"skeletons" : {
"type" : "array",
"description" : "Joint name (jointName property) of skeleton nodes.",
"items" : {
"$ref" : "glTFid.schema.json"
},
"uniqueItems" : true,
"required" : true
},
"skin" : {
"extends" : { "$ref" : "glTFid.schema.json" },
"description" : "The id (JSON property name) of the skin referenced by this node.",
"required" : true
},
"meshes" : {
"type" : "array",
"description" : "The ids (JSON property names) of source meshes.",
"items" : {
"$ref" : "glTFid.schema.json"
},
"uniqueItems" : true,
"required" : true
}
},
"additionalProperties" : false
}