Skip to content

Commit 9241680

Browse files
fix(typo): elements => items
1 parent 5494a29 commit 9241680

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

src/opengeodeweb_viewer/rpc/mesh/schemas/apply_textures.json

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,21 @@
33
"type": "object",
44
"properties": {
55
"id": {
6-
"type": "string"
6+
"type": "string",
7+
"minLength": 1
78
},
89
"textures": {
910
"type": "array",
10-
"elements": {
11+
"items": {
1112
"type": "object",
1213
"properties": {
1314
"texture_name": {
14-
"type": "string"
15+
"type": "string",
16+
"minLength": 1
1517
},
1618
"texture_file_name": {
17-
"type": "string"
19+
"type": "string",
20+
"minLength": 1
1821
}
1922
},
2023
"required": [

0 commit comments

Comments
 (0)