{
    "$schema": "http://json-schema.org/draft-04/schema#",
    "additionalProperties": false,
    "description": "Version 7",
    "properties": {
        "key": {
            "type": "string",
            "minLength": 1
        },
        "value": {
            "type": "string"
        },
        "modified_utc_timestamp": {
            "type": "integer"
        }
    },
    "required": [
        "key",
        "value"
    ],
    "title": "Profile",
    "type": "object"
}