Skip to main content
JSON Manual Created Edited

Creep Coefficient for Construction Stage

Input URI

{base url} + db/CRPC



Active Methods

POST, GET, PUT, DELETE



JSON Schema

Details

{
    "CRPC": {
        "$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": "NameofLoadGroup",
                            "type": "string"
                        },
                        "CREEP": {
                            "description": "Creep",
                            "type": "number"
                        }
                    }
                }
            }
        }
    }
}


Examples

Creep Coefficient for Construction Stage

{
    "Assign": {
        "25": {
            "ITEMS": [
                {
                    "ID": 1,
                    "GROUP_NAME": "2ndDeadLoad",
                    "CREEP": 1.2
                }
            ]
        },
        "26": {
            "ITEMS": [
                {
                    "ID": 1,
                    "GROUP_NAME": "Selfweight",
                    "CREEP": 1.5
                }
            ]
        }
    }
}


Specifications

No. Description Key Value Type Default Required

1

Creep Coefficient for Construction Stage

 • Insert the data as an object

"ITEMS"

Array
[Object]

-

Required

(1)

Serial Number

"ID"

Integer

0

Optional

(2)

Load Group Name

"GROUP_NAME"

String

Blank

Optional

(3)

Creep Coefficient

"CREEP"

Number

-

Required



0
Was this article helpful?