{
    "$schema": "http://json-schema.org/draft-04/schema#",
    "description": "PUT request body for modyfing a property",
    "properties": {
        "value": {
            "anyOf": [
                {
                    "type": "string"
                },
                {
                    "type": "number"
                },
                {
                    "type": "integer"
                },
                {
                    "type": "object"
                },
                {
                    "type": "array"
                },
                {
                    "type": "boolean"
                },
                {
                    "type": "null"
                }
            ],
            "description": "New property value. The actual type is determined by the property's MS-05-02 datatype."
        }
    },
    "required": [
        "value"
    ],
    "title": "Modify property body",
    "type": "object"
}
