Roundwood Pile
Version: 0.0.1
Language: en
Schema
https://schema.vinv.io/vinv-roundwood-pile/en/0.0.1.json
json
Full Documentation. {
"$id": "https://schema.vinv.io/vinv-roundwood-pile/0.0.1.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "RoundwoodPile",
"description": "Roundwood Pile",
"type": "object",
"required": [
"location",
"logs"
],
"properties": {
"location": {
"$ref": "https://schema.vinv.io/location/0.0.1.json"
},
"logs": {
"title": "Logs",
"description": "Multiple logs definition.",
"type": "array",
"minItems": 1,
"items": { "$ref": "https://schema.vinv.io/log/0.0.1.json" }
},
"image_pile_front": {
"title": "Image",
"description": "Image of the Pile front",
"$ref": "https://schema.vinv.io/image/0.0.1.json"
},
"treeNumber": {
"title": "Unique number",
"description": "Number/ID of the tree",
"type": "string",
"maxLength": 26,
"examples": [
"#1",
"45",
"ASDF435gHDFGhsgj5646"
]
}
}
}
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
33
34
35
36
37
38
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
33
34
35
36
37
38
Example File
This example file is automatically generated. Raw Example
Click me to view the code
json
{
"location": {
"coordinates": {
"longitude": 130.5627874,
"latitude": 50.5627874,
"altitude": 130
},
"accuracy": 12,
"geogrid": {
"h3": "8428309ffffffff",
"geohash": "ww8p1r4t8"
}
},
"logs": [
{
"species": "JM2",
"dimensions": [
{
"height": 0.1,
"diameter": 38
},
{
"height": 0.1,
"diameter": 38
},
{
"height": 0.1,
"diameter": 38
}
],
"image_log": {
"uri": "https://schema.vinv.io/asset/img/logo.png",
"encoder": "image/jpeg",
"compression": 0.8,
"width": 500,
"height": 500
}
},
{
"species": "JM2",
"dimensions": [
{
"height": 0.1,
"diameter": 38
},
{
"height": 0.1,
"diameter": 38
},
{
"height": 0.1,
"diameter": 38
}
],
"image_log": {
"uri": "https://schema.vinv.io/asset/img/logo.png",
"encoder": "image/jpeg",
"compression": 0.8,
"width": 500,
"height": 500
}
},
{
"species": "JM2",
"dimensions": [
{
"height": 0.1,
"diameter": 38
},
{
"height": 0.1,
"diameter": 38
},
{
"height": 0.1,
"diameter": 38
}
],
"image_log": {
"uri": "https://schema.vinv.io/asset/img/logo.png",
"encoder": "image/jpeg",
"compression": 0.8,
"width": 500,
"height": 500
}
}
],
"image_pile_front": {
"uri": "https://schema.vinv.io/asset/img/logo.png",
"encoder": "image/jpeg",
"compression": 0.8,
"width": 500,
"height": 500
},
"$schema": "https://schema.vinv.io/vinv-roundwood-pile/0.0.1.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96