{
    "$schema" : "http://json-schema.org/schema#",
    "type" : "object",
    "id" : "http://surveyman.github.io/Schemata/survey_input.json#",
    "title" : "JSON schema for SurveyMan input",
    "properties" : {
        "survey" : {
            "description" : "The survey object",
            "type" : "array",
            "items" : {
                "$ref" : "survey_block.json"
            }
        },
        "correlation" : {
            "description" : "The correlation map between tokens and correlated question ids.",
            "type" : "object"
        },
        "otherValues" : {
            "description" : "A map from quids to a map of tokens corresponding to the other columns and their values",
            "type" : "object"
        }
    },
    "required" : ["survey"]
}
