forked from KhronosGroup/glTF
-
Notifications
You must be signed in to change notification settings - Fork 0
/
asset.schema.json
30 lines (30 loc) · 1004 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
26
27
28
29
30
{
"$schema": "http://json-schema.org/draft-04/schema",
"title": "Asset",
"type": "object",
"description": "Metadata about the glTF asset.",
"allOf": [ { "$ref": "glTFProperty.schema.json" } ],
"properties": {
"copyright": {
"type": "string",
"description": "A copyright message suitable for display to credit the content creator."
},
"generator": {
"type": "string",
"description": "Tool that generated this glTF model. Useful for debugging."
},
"version": {
"type": "string",
"description": "The glTF version that this asset targets.",
"pattern": "^[0-9]+\\.[0-9]+$"
},
"minVersion": {
"type": "string",
"description": "The minimum glTF version that this asset targets.",
"pattern": "^[0-9]+\\.[0-9]+$"
},
"extensions": { },
"extras": { }
},
"required": [ "version" ]
}