structure


Type: structure

Properties:

Property Description Type Reference
size size of structure or property in qm /definitions/nonnegative
days-occupied number of days a structure is occupied /definitions/days-occupied
number-of-floors number of floors of structure /definitions/nonnegative-integer
address address of person, structure or property /address
is-shell construction phase of structure is shell construction boolean /structure/is-shell
construction-type way of construction of structure /definitions/construction-type
year-of-construction year of construction of the object /definitions/year

Schema:


{
    "$id": "https://ontology.riskine.com/structure.json",
    "type": "object",
    "allOf": [
        {
            "$ref": "object.json"
        }
    ],
    "properties": {
        "size": {
            "description": "size of structure or property in qm",
            "$ref": "definitions.json#/nonnegative"
        },
        "days-occupied": {
            "description": "number of days a structure is occupied",
            "$ref": "definitions.json#/days-occupied"
        },
        "number-of-floors": {
            "description": "number of floors of structure",
            "$ref": "definitions.json#/nonnegative-integer"
        },
        "address": {
            "description": "address of person, structure or property",
            "$ref": "address.json"
        },
        "is-shell": {
            "type": "boolean",
            "description": "construction phase of structure is shell construction"
        },
        "construction-type": {
            "description": "way of construction of structure",
            "$ref": "definitions.json#/construction-type"
        },
        "year-of-construction": {
            "description": "year of construction of the object",
            "$ref": "definitions.json#/year"
        }
    }
}