Skip to main content
JSON Manual Created Edited

Node

Input URI

{base url} + db/NODE



Active Methods

POST, GET, PUT, DELETE



JSON Schema

Details

{
    "NODE": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "type": "object",
        "properties": {
            "X": {
                "description": "GLOBALX-POSITION",
                "type": "number"
            },
            "Y": {
                "description": "GLOBALY-POSITION",
                "type": "number"
            },
            "Z": {
                "description": "GLOBALZ-POSITION",
                "type": "number"
            }
        }
    }
}


Examples

Node

{
    "Assign": {
        "1": {
            "X": -1,
            "Y": -1,
            "Z": -1
        },
        "2": {
            "X": -2,
            "Y": -2,
            "Z": -2
        },
        "3": {
            "X": -3,
            "Y": -3,
            "Z": -3
        }
    }
}


Specifications

No. Description Key Value Type Default Required

1

Coordinates - x

"X"

Number

0

Optional

2

Coordinates - y

"Y"

Number

0

Optional

3

Coordinates - z

"Z"

Number

0

Optional



2
Was this article helpful?