{
    "$schema": "http://json-schema.org/draft-04/schema#",
    "additionalProperties": true,
    "description": "Version v6",
    "properties": {
        "application_id": {
            "type": "string"
        },
        "application_signature": {
            "type": "string"
        },
        "user_id": {
            "type": "string"
        },
        "secure_token": {
            "type": "string"
        },
        "trip_plans": {
            "items": {
                "$ref": "/resources/schema/user/v6/TripPlan.json"
            },
			"type": "array"
        }
    },
    "required": [
        "secure_token",
        "application_id",
        "user_id",
        "trip_plans"
    ],
    "title": "SaveTripPlanRequest",
    "type": "object"
}