Skip to content
This repository has been archived by the owner on Jun 1, 2021. It is now read-only.

Schema db calibration

Ben Lenser edited this page Jun 4, 2013 · 2 revisions

Schema Dashboard Calibration

Info

Get Box Calibration Information

Url

rest/calibration/boxes
rest/calibration/boxes/<boxId> (shows only data to requested box id -> still returns an array)

Type

GET

Parameter

  • token

Schema

{
    "type": "array",
    "$schema": "http://json-schema.org/draft-03/schema",
    "items": {
        "type": "object",
        "properties": {
            "boxId": {
                "type": "number",
                "required": true
            },
            "regression": {
                "type": "number",
                "required": true
            },
            "disturbance": {
                "type": "number",
                "required": true
            },
            "tickReduction": {
                "type": "number",
                "required": true
            }
            
        }
    }
}

Example

[
        {
             boxId:2,
             regression:2.3,
             disturbance:0.234,
             tickReduction:1
             
        }
]