Skip to content

Commit 66fb070

Browse files
committed
adding testcase for #31
1 parent 93e829d commit 66fb070

File tree

2 files changed

+39
-0
lines changed

2 files changed

+39
-0
lines changed
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
"$schema": "http://json-schema.org/draft-04/schema#",
3+
"title": "JSON Schema X3D V3.3",
4+
"description": "Experimental JSON Schema for X3D V3.3 ",
5+
"type": "object",
6+
"properties": {
7+
"PixelTexture": {
8+
"type": "object",
9+
"properties": {
10+
"@image": {
11+
"type": "array",
12+
"minItems": 3,
13+
"items": [
14+
{
15+
"type": "integer",
16+
"default": 0
17+
},
18+
{
19+
"type": "integer",
20+
"default": 0
21+
},
22+
{
23+
"type": "integer",
24+
"default": 0
25+
}
26+
],
27+
"additionalItems": {
28+
"type": "integer"
29+
}
30+
}
31+
}
32+
}
33+
}
34+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{ "PixelTexture":
2+
{
3+
"@image":[4278190335,4278190207, 45]
4+
}
5+
}

0 commit comments

Comments
 (0)