{
    "$schema" : "http://json-schema.org/draft-04/schema#",
    "title" : "Search",
    "type" : "object",
    "additionalProperties" : false,
    "description" : "TAnalytics-v1",
    "properties" : {
        "Trigger" : {
            "enum" : [
                "VOICE",
                "ONEBOX",
                "CATEGORY",
                "WAYPOINT",
                "RECOMMENDATION",
                "RECENT",
                "FAVORITES"
            ],
            "description" : "Reqired Starting Point of the Search in the app"
        },
        "EntityType" : {
            "enum" : [
                "ADDRESS",
                "POI"
            ],
            "description" : "Required Whether search was done for an Address or POI"
        },
        "Term" : {
            "type" : "string",
            "description" : "Search term entered by user (entire string)"
        },
        "ParentLogID" : {
            "type" : "string",
            "description" : "The LogID of triggering event"
        },
        "Display" : {
            "enum" : [
                "MAP",
                "LIST"
            ],
            "description" : "Required Display mode of SRP"
        },
        "Category" : {
            "type" : "string",
            "description" : "POI category like Coffee, Gas, ATM, etc"
        }
    }
}