{
	"$schema": "http://json-schema.org/draft-04/schema#",
	"additionalProperties": false,
	"description": "Version v6",
	"properties": {
		"is_deleted": {
			"type": "boolean"
		},
		"trip_plan_id": {
			"type": "string"
		},
		"name": {
			"type": "string"
		},
		"planned_start_utc_timestamp": {
			"type": "integer"
		},
		"waypoints": {
			"items": {
				"$ref": "/resources/schema/user/v6/Waypoint.json"
			},
			"type": "array"
		},
		"modified_utc_timestamp": {
			"type": "integer"
		},
		"destination": {
			"$ref": "/resources/schema/user/v6/Waypoint.json"
		},
		"note": {
			"type": "string"
		}
	},
	"required": ["trip_plan_id",
		"name",
		"waypoints",
		"modified_utc_timestamp",
		"destination"
	],
	"title": "TripPlan",
	"type": "object"
}