{
    "$schema" : "http://json-schema.org/draft-04/schema#",
    "title" : "PredictionFeedbackListItem",
    "type" : "object",
    "additionalProperties" : false,
    "description" : "TAnalytics-v2 .. Prediction Feedback List Item",
    "properties" : {
        "reason_id" : {
            "type" : "string",
            "description" : "Reason id"
        },
        "reason" : {
            "type" : "string",
            "description" : "Reason english string"
        },
        "position" : {
            "type" : "integer",
            "description" : "position in the list"
        }
    },
    "required" : [
        "reason"
    ]
}