Skip to content
Snippets Groups Projects
prescience-interface.json 1.04 KiB
Newer Older
Scott Lundberg's avatar
Scott Lundberg committed
{
    "mappings": {
        "user-state" : {
            "properties" : {
                "time" : { "type" : "date", "format" : "yyyy-MM-dd'\''T'\''HH:mm:ss.SSS'\''Z'\''" },
                "testIndex" : { "type" : "integer" },
                "testTimeIndex" : { "type" : "integer" }
Scott Lundberg's avatar
Scott Lundberg committed

        "recorded-score" : {
            "properties" : {
                "user" : { "type" : "string", "index" : "not_analyzed" },
                "score" : { "type" : "float" },
                "testIndex" : { "type" : "integer" },
                "testTimeIndex" : { "type" : "integer" },
                "time" : { "type" : "date", "format" : "yyyy-MM-dd'\''T'\''HH:mm:ss.SSS'\''Z'\''" },
                "procId" : { "type" : "string", "index" : "not_analyzed" },
                "version" : { "type" : "string", "index" : "not_analyzed" }
            }
Scott Lundberg's avatar
Scott Lundberg committed
        }
    }
}
curl -XPOST 'http://localhost:9200/_aliases' -d '
{
    "actions" : [
        { "add" : { "index" : "prescience-interface-v1", "alias" : "prescience-interface" } }
    ]
}'