Skip to main content
JSON Manual Created Edited

Rigid Link

Input URI

{base url} + db/RIGD



Active Methods

POST, GET, PUT, DELETE



JSON Schema

Details

{
    "RIGD": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "type": "object",
        "properties": {
            "ITEMS": {
                "description": "Items",
                "type": "array",
                "items": {
                    "type": "object",
                    "properties": {
                        "ID": {
                            "description": "ID",
                            "type": "integer"
                        },
                        "GROUP_NAME": {
                            "description": "BoundaryGroupName",
                            "type": "string"
                        },
                        "DOF": {
                            "description": "SubType",
                            "type": "integer"
                        },
                        "S_NODE": {
                            "description": "SubNode",
                            "type": "array",
                            "items": {
                                "type": "integer"
                            }
                        }
                    }
                }
            }
        }
    }
}


Examples

Rigid Link

{
    "Assign": {
        "1": {
            "ITEMS": [
                {
                    "ID": 1,
                    "GROUP_NAME": "Service",
                    "DOF": 110001,
                    "S_NODE": [
                        2,
                        3,
                        4,
                        5
                    ]
                }
            ]
        }
    }
}


Specifications

No. Description Key Value Type Default Required

1

Rigid Link

 • Insert the data as an object

"ITEMS"

Array
[Object]

-

Required

(1)

Serial Number

"ID"

Integer

0

Optional

(2)

Boundary Group Name

"GROUP_NAME"

String

Blank

Optional

(3)

Degree of Freedom

 • Rigid: 1, Free: 0

   ◦ 6th decimal place: DX

   ◦ 5th decimal place: DY

   ◦ 4th decimal place: DZ

   ◦ 3rd decimal place: RX

   ◦ 2nd decimal place: RY

   ◦ 1st decimal place: RZ

"DOF"

Integer

-

Required

(4)

Slave Nodes ID Number

"S_NODE"

Array
[Integer]

-

Required



0
Was this article helpful?