Skip to main content
JSON Manual Created Edited

Material Table

Input URI

{base url} + post/TABLE



Active Methods

POST



JSON Schema

Details

{
    "TABLE": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "title": "MaterialTable",
        "type": "object",
        "properties": {
            "Argument": {
                "type": "object",
                "properties": {
                    "TABLE_NAME": {
                        "type": "string"
                    },
                    "TABLE_TYPE": {
                        "type": "string"
                    },
                    "EXPORT_PATH": {
                        "type": "string"
                    }
                }
            }
        }
    }
}


Request Examples

Material

{
    "Argument": {
        "TABLE_NAME": "Example",
        "TABLE_TYPE": "MATERIAL",
        "EXPORT_PATH": "C:\\MIDAS\\Result\\Material_Output.JSON"
    }
}


Response Examples

Material

{
    "Example": {
        "FORCE": "kN",
        "DIST": "m",
        "HEAD": [
            "Index",
            "ID",
            "Name",
            "Type",
            "Standard",
            "Code",
            "DB",
            "UseMassDensity",
            "Elasticity",
            "Poisson",
            "Thermal",
            "Density",
            "MassDensity",
            "Standard2",
            "Code2",
            "DB2",
            "Elasticity2",
            "Poisson2",
            "Thermal2",
            "Density2",
            "MassDensity2",
            "PlasticMatl.",
            "Sp.Heat",
            "HeatCo.",
            "MaterialType",
            "ShearMod._xy",
            "Elasticity_y",
            "Thermal_y",
            "ShearMod._xz",
            "Poisson_xz",
            "Elasticity_z",
            "Thermal_z",
            "ShearMod._yz",
            "Poisson_yz"
        ],
        "DATA": [
            [
                "1",
                "1",
                "st",
                "Concrete",
                "KSCE-LSD15(RC)",
                "",
                "C45",
                "O",
                "3.1185e+07",
                "0.18",
                "1.0000e-05",
                "2.4517e+01",
                "2.5000e+00",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "",
                "None",
                "0.0000",
                "0.0000",
                "Isotropic",
                "0.0000",
                "0.0000",
                "0.0000",
                "0.0000",
                "0",
                "0.0000",
                "0.0000",
                "0.0000",
                "0"
            ]
        ]
    }
}


Specifications

No. Description Key Value Type Default Required

1

Table Name

 • Result Table Title

"TABLE_NAME"

String

Empty

Optional

2

Result Table Type

 • "MATERIAL"

"TABLE_TYPE"

String

-

Required

3

Result Table Save Path

"EXPORT_PATH"

String

-

Optional



0
Was this article helpful?