{
    "$schema" : "http://json-schema.org/draft-04/schema#",
    "title" : "WordSuggestListItem",
    "type" : "object",
    "additionalProperties" : false,
    "description" : "TAnalytics-v2 .. List of words for WordSuggest list",
    "properties" : {
        "word" : {
            "type" : "string",
            "description" : "Suggested word"
        }
    },
    "required" : [
        "word"
    ]
}