Skip to content
On this page

Cadastre

Version: 0.0.1

Language: en

Tree cadastre

Schema

https://schema.vinv.io/vinv-cadastre/en/0.0.1.json

json
{
    "$id": "https://schema.vinv.io/vinv-cadastre/0.0.1.json",
    "$schema": "http://json-schema.org/draft-07/schema#",
    "title": "Cadastre",
    "description": "Tree cadastre",
    "type": "object",
    "additionalProperties": false,
    "required": [
        "location",
        "dbh",
        "tree"
    ],
    "properties": {
        "location": {
            "$ref": "https://schema.vinv.io/location/0.0.1.json"
        },
        "dbh": {
            "title": "Diameter at Breast Height",
            "description": "Diameter in centimeter",
            "type": "number",
            "minimum": 1,
            "maximum": 100,
            "multipleOf" : 0.1,
            "examples": [
                34,
                56
            ],
            "vinv":{
                "unit": "Centimeter",
                "vinv:unitSymbol": "cm",
                "vinv:speech": true
            }
        },
        "tree": {
            "$ref": "https://schema.vinv.io/tree/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
Full Documentation.

Example File

This example file is automatically generated. Raw Example

Click me to view the code
json
<!--@include: ../../assets/schema/vinv-cadastre/0.0.1-example.json-->
1

Released under the GNU GENERAL PUBLIC LICENSE.