{
    "$schema" : "http://json-schema.org/draft-04/schema#",
    "title" : "ExploreCategory",
    "type" : "object",
    "additionalProperties" : false,
    "description" : "Analytics-v3 .. Explore Category object",
    "properties" : {
        "log_context" : {
            "$ref" : "/resources/schema/analytics/client/v3/LogContext.json",
            "description" : "Required Log Context Reference"
        },
        "event_name" : {
            "type" : "string",
            "enum" : [
                "EXPLORE_CATEGORY"
            ]
        },
        "schema_definition" : {
            "type" : "string",
            "enum" : [
                "ExploreCategory"
            ]
        },
        "action" : {
            "$ref" : "/resources/schema/analytics/client/v3/ClickActionType.json",
            "description" : "Required .. If user tapped the tab Explore or Nearby then log as Click. If user selected a category log as Select. If user cancelled then log as Cancel"
        },
        "category_id" : {
            "type" : "string",
            "description" : "Category ID clicked on"
        },
        "category" : {
            "$ref" : "/resources/schema/analytics/client/v3/CategoryType.json",
            "description" : "Name of the category clicked on"
        },
        "display" : {
            "$ref" : "/resources/schema/analytics/client/v3/DisplayType.json",
            "description" : "Whether list displayed on Map or as a list"
        },
        "interaction_method": {
            "$ref": "/resources/schema/analytics/client/v3/InteractionMethodValues.json",
            "description": "for each user interaction log the interation method"
        }
    },
    "required" : [
        "log_context",
        "event_name",
        "schema_definition",
        "action",
        "category"
    ]
}