Skip to main content
JSON Manual Created Edited

Tendon Weight - Analysis Result Table

Input URI

{base url} + post/TABLE



Active Methods

POST



JSON Schema

Details

{
    "TABLE": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "title": "TendonWeight",
        "type": "object",
        "properties": {
            "Argument": {
                "type": "object",
                "properties": {
                    "TABLE_NAME": {
                        "type": "string",
                        "description": "ResponseTableTitle"
                    },
                    "TABLE_TYPE": {
                        "type": "string",
                        "description": "ResultTableType",
                        "enum": [
                            "TNDN_WEIGHT_PROFILE",
                            "TNDN_WEIGHT_PROPERTY",
                            "TNDN_WEIGHT_GROUP"
                        ]
                    },
                    "EXPORT_PATH": {
                        "type": "string",
                        "description": "ResultTableSavePath"
                    },
                    "UNIT": {
                        "type": "object",
                        "description": "ResponseUnitSetting",
                        "properties": {
                            "FORCE": {
                                "type": "string",
                                "description": "Force"
                            },
                            "DIST": {
                                "type": "string",
                                "description": "Length"
                            },
                            "HEAT": {
                                "type": "string",
                                "description": "Heat"
                            },
                            "TEMP": {
                                "type": "string",
                                "description": "Temperature"
                            }
                        }
                    },
                    "STYLES": {
                        "type": "object",
                        "description": "ResponseNumberFormat",
                        "properties": {
                            "FORMAT": {
                                "type": "string",
                                "description": "Numberformat",
                                "enum": [
                                    "Default",
                                    "Fixed",
                                    "Scientific",
                                    "General"
                                ]
                            },
                            "PLACE": {
                                "type": "integer",
                                "description": "Digitplace",
                                "minimum": 0,
                                "maximum": 15
                            }
                        }
                    },
                    "COMPONENTS": {
                        "type": "array",
                        "description": "ComponentsofResultTable",
                        "items": {
                            "type": "string"
                        }
                    }
                }
            }
        }
    }
}


Request Examples

Tendon Profile

{
    "Argument": {
        "TABLE_NAME": "TendonProfile",
        "TABLE_TYPE": "TNDN_WEIGHT_PROFILE",
        "EXPORT_PATH": "C:\\MIDAS\\Result\\Output.JSON",
        "UNIT": {
            "FORCE": "kN",
            "DIST": "m"
        },
        "STYLES": {
            "FORMAT": "Fixed",
            "PLACE": 12
        },
        "COMPONENTS": [
            "TendonName",
            "TendonNum",
            "Area",
            "Length",
            "Weight/Length",
            "Weight",
            "TotalWeight"
        ]
    }
}

Tendon Property

{
    "Argument": {
        "TABLE_NAME": "TendonProperty",
        "TABLE_TYPE": "TNDN_WEIGHT_PROPERTY",
        "EXPORT_PATH": "C:\\MIDAS\\Result\\Output.JSON",
        "UNIT": {
            "FORCE": "kN",
            "DIST": "m"
        },
        "STYLES": {
            "FORMAT": "Fixed",
            "PLACE": 12
        },
        "COMPONENTS": [
            "TendonProperty",
            "Area",
            "TotalLength",
            "Weight/Length",
            "TotalWeight"
        ]
    }
}

Tendon Group

{
    "Argument": {
        "TABLE_NAME": "TendonGroup",
        "TABLE_TYPE": "TNDN_WEIGHT_GROUP",
        "EXPORT_PATH": "C:\\MIDAS\\Result\\Output.JSON",
        "UNIT": {
            "FORCE": "kN",
            "DIST": "m"
        },
        "STYLES": {
            "FORMAT": "Fixed",
            "PLACE": 12
        },
        "COMPONENTS": [
            "TendonGroup",
            "TotalLength",
            "TotalWeight"
        ]
    }
}


Response Examples

Tendon Profile

{
    "TendonProfile": {
        "FORCE": "kN",
        "DIST": "m",
        "HEAD": [
            "Index",
            "TendonName",
            "TendonNum",
            "Area",
            "Length",
            "Weight/Length",
            "Weight",
            "TotalWeight"
        ],
        "DATA": [
            [
                "1",
                "Bot-Key-A01",
                "1.000000000000",
                "0.002635300000",
                "21.048299083539",
                "0.202871198248",
                "4.270093656165",
                "4.270093656165"
            ],
            [
                "2",
                "Bot-Key-A02",
                "1.000000000000",
                "0.002635300000",
                "21.035730337216",
                "0.202871198248",
                "4.267543819538",
                "4.267543819538"
            ],
            [
                "3",
                "Bot-Key-A03",
                "1.000000000000",
                "0.002635300000",
                "30.567748608155",
                "0.202871198248",
                "6.201315787888",
                "6.201315787888"
            ],
            [
                "4",
                "Bot-Key-A04",
                "1.000000000000",
                "0.002635300000",
                "40.050427099525",
                "0.202871198248",
                "8.125078136035",
                "8.125078136035"
            ]
        ]
    }
}

Tendon Property

{
    "TendonProperty": {
        "FORCE": "kN",
        "DIST": "m",
        "HEAD": [
            "Index",
            "TendonProperty",
            "Area",
            "TotalLength",
            "Weight/Length",
            "TotalWeight"
        ],
        "DATA": [
            [
                "1",
                "Bot",
                "0.002635300000",
                "2073.687453151790",
                "0.202871198248",
                "420.691458413265"
            ],
            [
                "2",
                "Top",
                "0.002635300000",
                "5553.015935350260",
                "0.202871198248",
                "1126.546996696130"
            ],
            [
                "3",
                "SUM",
                "-",
                "7626.703388502000",
                "-",
                "1547.238455109000"
            ]
        ]
    }
}

Tendon Group

{
    "TendonGroup": {
        "FORCE": "kN",
        "DIST": "m",
        "HEAD": [
            "Index",
            "TendonGroup",
            "TotalLength",
            "TotalWeight"
        ],
        "DATA": [
            [
                "1",
                "Bot-Key-A",
                "446.379820137516",
                "90.557608985136"
            ],
            [
                "2",
                "Bot-Key-B",
                "446.379820137516",
                "90.557608985136"
            ],
            [
                "3",
                "FsmBot-L-A",
                "295.231953219189",
                "59.894060110748"
            ],
            [
                "4",
                "FsmBot-L-B",
                "295.231953219189",
                "59.894060110748"
            ],
            [
                "5",
                "FsmBot-R-A",
                "295.231953219189",
                "59.894060110748"
            ],
            [
                "6",
                "FsmBot-R-B",
                "295.231953219189",
                "59.894060110748"
            ],
            [
                "7",
                "Top-P1-A",
                "1388.254039905030",
                "281.636760548507"
            ],
            [
                "8",
                "Top-P1-B",
                "1388.253927770100",
                "281.636737799561"
            ],
            [
                "9",
                "Top-P2-A",
                "1388.254039905030",
                "281.636760548507"
            ],
            [
                "10",
                "Top-P2-B",
                "1388.253927770100",
                "281.636737799561"
            ],
            [
                "11",
                "SUM",
                "7626.703388502000",
                "1547.238455109000"
            ]
        ]
    }
}


Specifications

No. Description Key Value Type Default Required

1

Table Name

 • Response Table Title

"TABLE_NAME"

String

Empty

Optional

2

Result Table Type

 • Tendon Profile: "TNDN_WEIGHT_PROFILE"

 • Tendon Property: "TNDN_WEIGHT_PROPERTY"

 • Tendon Group: "TNDN_WEIGHT_GROUP"

"TABLE_TYPE"

String

-

Required

3

Result Table Save Path

"EXPORT_PATH"

String

-

Optional

4

Response Unit Setting

"UNIT"

Object

System

Optional

(1)

Force

"FORCE"

String

-

Optional

(2)

Length

"DIST"

String

-

Optional

(3)

Heat

"HEAT"

String

-

Optional

(4)

Temperature

"TEMP"

String

-

Optional

5

Response Number Format

"STYLES"

Object

System

Optional

(1)

Number Format

 • "Default"

 • "Fixed"

 • "Scientific"

 • "General"

"FORMAT"

String

-

Optional

(2)

Digit Place

 • 0 to 15

"PLACE"

Integer

-

Optional

6

Components of Result Table

"COMPONENTS"

Array [String]

All

Optional



0
Was this article helpful?