Skip to main content
JSON Manual Created Edited

Ignore Elements for Load Cases

Input URI

{base url} + db/IELC



Active Methods

POST, GET, PUT, DELETE



JSON Schema

Details

{
    "IELC": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "type": "object",
        "properties": {
            "ELEMENT": {
                "description": "ElementKeyValue",
                "type": "integer"
            },
            "LCNAME": {
                "description": "LoadCaseName",
                "type": "string"
            },
            "OPT_IGNORE": {
                "description": "IgnoreOption(true/false)",
                "type": "boolean"
            }
        }
    }
}


Examples

Ignore Elements for Load Cases

{
    "Assign": {
        "1": {
            "ELEMENT": 5,
            "LCNAME": "DL",
            "OPT_IGNORE": true
        },
        "2": {
            "ELEMENT": 5,
            "LCNAME": "LL",
            "OPT_IGNORE": true
        },
        "3": {
            "ELEMENT": 18,
            "LCNAME": "DL",
            "OPT_IGNORE": false
        }
    }
}


Specifications

No. Description Key Value Type Default Required

1

Element

"ELEMENT"

Integer

-

Required

2

Load Case Name

"LCNAME"

String

-

Required

3

Ignore Option

"OPT_IGNORE"

Boolean

-

Required



0
Was this article helpful?