Skip to main content
JSON Manual Created Edited

Structure Group

Input URI

{base url} + db/GRUP



Active Methods

POST, GET, PUT



JSON Schema

Details

{
    "GRUP": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "type": "object",
        "properties": {
            "NAME": {
                "description": "GroupName",
                "type": "string"
            },
            "P_TYPE": {
                "description": "PlaneType",
                "type": "integer"
            },
            "N_LIST": {
                "description": "NodeList",
                "type": "array",
                "items": {
                    "type": "integer"
                }
            },
            "E_LIST": {
                "description": "ElementList",
                "type": "array",
                "items": {
                    "type": "integer"
                }
            }
        }
    }
}


Examples

Structure Group

{
    "Assign": {
        "1": {
            "NAME": "CENTER_",
            "P_TYPE": 0,
            "N_LIST": [
                1,
                2,
                3,
                4,
                5
            ],
            "E_LIST": [
                1,
                2,
                3,
                4,
                5
            ]
        }
    }
}


Specifications

No. Description Key Value Type Default Required

1

Structure Group Name

"NAME"

String

 -

Required

2

Plane Type

"P_TYPE"

Integer

0

Optional

3

Node List

"N_LIST"

Array

[Integer]

-

Optional

4

Element List

"E_LIST"

Array

[Integer]

-

Optional



MIDAS GEN NX only

0
Was this article helpful?