Skip to main content
JSON Manual Created Edited

Span Information

Input URI

{base url} + db/SPAN



Active Methods

POST, GET, PUT, DELETE



JSON Schema

Details

{
    "SPAN": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "type": "object",
        "properties": {
            "NAME": {
                "description": "Name",
                "type": "string"
            },
            "bEXACTSPAN": {
                "description": "bExactSpan",
                "type": "boolean"
            },
            "DIRECTION": {
                "description": "nDirection",
                "type": "integer"
            },
            "SECTTYPE": {
                "description": "nSectType",
                "type": "integer"
            },
            "SPAN_LIST": {
                "description": "Span",
                "type": "array",
                "items": {
                    "type": "number"
                }
            },
            "SPAN_BASE_ITEMS": {
                "description": "SpanBaseItems",
                "type": "array",
                "items": {
                    "type": "object",
                    "properties": {
                        "ELEM_KEY": {
                            "description": "Element",
                            "type": "integer"
                        },
                        "SUPPORT": {
                            "description": "Support",
                            "type": "integer"
                        }
                    }
                }
            }
        }
    }
}


Examples

Span Information

{
    "Assign": {
        "1": {
            "NAME": "s1",
            "bEXACTSPAN": true,
            "DIRECTION": 0,
            "SECTTYPE": 0,
            "SPAN_LIST": [
                2.5,
                5,
                32.5
            ],
            "SPAN_BASE_ITEMS": [
                {
                    "ELEM_KEY": 1,
                    "SUPPORT": 1
                },
                {
                    "ELEM_KEY": 2,
                    "SUPPORT": 1
                },
                {
                    "ELEM_KEY": 3,
                    "SUPPORT": 2
                },
                {
                    "ELEM_KEY": 4,
                    "SUPPORT": 0
                },
                {
                    "ELEM_KEY": 5,
                    "SUPPORT": 0
                },
                {
                    "ELEM_KEY": 6,
                    "SUPPORT": 0
                },
                {
                    "ELEM_KEY": 7,
                    "SUPPORT": 0
                },
                {
                    "ELEM_KEY": 8,
                    "SUPPORT": 0
                },
                {
                    "ELEM_KEY": 9,
                    "SUPPORT": 0
                },
                {
                    "ELEM_KEY": 10,
                    "SUPPORT": 0
                },
                {
                    "ELEM_KEY": 11,
                    "SUPPORT": 0
                },
                {
                    "ELEM_KEY": 12,
                    "SUPPORT": 0
                },
                {
                    "ELEM_KEY": 13,
                    "SUPPORT": 0
                },
                {
                    "ELEM_KEY": 14,
                    "SUPPORT": 0
                },
                {
                    "ELEM_KEY": 15,
                    "SUPPORT": 0
                },
                {
                    "ELEM_KEY": 16,
                    "SUPPORT": 2
                }
            ]
        }
    }
}


Specifications

No. Description Key Value Type Default Required

1

Span Name

"NAME"

String

Required

2

Exact Span Option

"bEXACTSPAN"

Boolean

-

Required

3

Inner Direction of Multiple Girders

 • (-) Local y: 0

 • (+) Local y: 1

 • Both: 2

 • None: 3

"DIRECTION"

Integer

-

Required

4

Assign Elements

 • By Selection: 0

 • Number: 1

"SECTTYPE"

Integer

-

Required

When Exact Span Option, "bEXACTSPAN" is True

5

Span by Element Length

"SPAN_LIST"

Number

-

Required

6

Span Items

"SPAN_BASE_ITEMS"

Object

-

Required

(1)

Element Number

"ELEM_KEY"

Integer

-

Required

(2)

Support Location

 • None: 0

 • I: 1

 • J: 2

"SUPPORT"

Integer

-

Required



0
Was this article helpful?