Skip to main content
JSON Manual Created Edited

Time Loads for Construction Stage

Input URI

{base url} + db/TMLD



Active Methods

POST, GET, PUT, DELETE



JSON Schema

Details

{
    "TMLD": {
        "$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"
                        },
                        "DAY": {
                            "description": "Day",
                            "type": "number"
                        }
                    }
                }
            }
        }
    }
}


Examples

Time Loads for Construction Stage

{
    "Assign": {
        "10": {
            "ITEMS": [
                {
                    "ID": 1,
                    "GROUP_NAME": "DL(BC)2",
                    "DAY": 35
                }
            ]
        },
        "11": {
            "ITEMS": [
                {
                    "ID": 1,
                    "GROUP_NAME": "DL(BC)2",
                    "DAY": 25
                }
            ]
        }
    }
}


Specifications

No. Description Key Value Type Default Required

1

Time Load 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)

Time Loads

"DAY"

Number

-

Required



0
Was this article helpful?