{
    "$schema": "http://json-schema.org/draft-04/schema#",
    "title": "RemoveAllFavorites",
    "type": "object",
    "additionalProperties": false,
    "description": "Remove All Favorites Event Schema",
    "properties": {
        "log_context": {
            "$ref": "/resources/schema/analytics/client/v4/LogContext.json",
            "description": "Required Log Context Reference"
        },
        "event_name": {
            "type": "string",
            "enum": [
                "REMOVE_ALL_FAVORITES"
            ]
        },
        "schema_definition": {
            "type": "string",
            "enum": [
                "RemoveAllFavorites"
            ]
        }
    },
    "required": [
        "log_context",
        "event_name",
        "schema_definition"
    ]
}