{
    "$schema" : "http://json-schema.org/draft-04/schema#",
    "title" : "SearchListItemSdk",
    "type" : "object",
    "additionalProperties" : false,
    "description" : "TAnalytics-v4 .. List Item for Search SRP list logged by SDK",
    "properties" : {
        "entity_id" : {
            "type" : "string",
            "description" : "Identifier of the Entity associated with the item in the list"
        },
        "category_id" : {
            "type" : "string",
            "description" : "Identifier of the Category associated with the item in the list"
        },
        "term" : {
            "type" : "string",
            "description" : "The term displayed if it has neither entity_id no category_id."
        },
        "type" : {
            "type" : "string",
            "description" : "Whether the result was a Recent, Like, Home,Work or AutoSuggest. For Search event, whether POI or Address or AD."
        },
        "distance" : {
            "type" : "number",
            "description" : "Calculated distance displayed for the place shown in results, in meters."
        }
    },
    "required" : [
        "entity_id"
    ]
}