{
    "$schema" : "http://json-schema.org/draft-04/schema#",
    "title" : "WaypointResponse",
    "type" : "object",
    "additionalProperties" : false,
    "description" : "Analytics-v3 .. Waypoint Response object",
    "properties" : {
        "log_context" : {
            "$ref" : "/resources/schema/analytics/client/v3/LogContext.json",
            "description" : "Required Log Context Reference"
        },
        "event_name" : {
            "type" : "string",
            "enum" : [
                "WAYPOINT_RESPONSE"
            ]
        },
        "schema_definition" : {
            "type" : "string",
            "enum" : [
                "WaypointResponse"
            ]
        },
        "parent_log_id" : {
            "type" : "string",
            "description" : "Required.. log_id of the WAYPOINT event for which the response was received."
        },
        "status" : {
            "$ref" : "/resources/schema/analytics/client/v3/StatusType.json",
            "description" : "Successfully added/deleted or not."
        },
        "caused_by" : {
            "type" : "string",
            "description" : "Cause if failed"
        }
    },
    "required" : [
        "log_context",
        "event_name",
        "schema_definition",
        "parent_log_id",
        "status",
        "caused_by"
    ]
}