{
	"$schema": "https://json-schema.org/draft/2020-12/schema",
	"$id": "https://schema.twindev.org/unece/UneceTransportRoute",
	"title": "UneceTransportRoute",
	"description": "A way or course taken from one location to another for the purpose of transporting cargo and or passengers.",
	"type": "object",
	"properties": {
		"@context": {
			"$ref": "https://schema.twindev.org/unece/UneceContextType",
			"description": "JSON-LD Context."
		},
		"type": {
			"const": "TransportRoute",
			"description": "JSON-LD Type."
		},
		"departurePoint": {
			"type": "string",
			"description": "A departure point, expressed as text, for this transport route."
		},
		"description": {
			"type": "string",
			"description": "The textual description of this transport route."
		},
		"frequencyEffectivePeriod": {
			"type": "array",
			"items": {
				"$ref": "https://schema.twindev.org/unece/UneceSpecifiedPeriod"
			},
			"description": "A specified period of time for which a frequency is effective for this transport route."
		},
		"frequencyTypeCode": {
			"type": "string",
			"description": "The code specifying the type of frequency for this transport route, such as weekly, bi-monthly or daily."
		},
		"identifier": {
			"anyOf": [
				{
					"type": "string"
				},
				{
					"$ref": "https://schema.twindev.org/json-ld/JsonLdValueObject"
				}
			],
			"description": "The unique identifier of this transport route."
		},
		"itineraryStopEvent": {
			"type": "array",
			"items": {
				"$ref": "https://schema.twindev.org/unece/UneceTransportEvent"
			},
			"description": "An itinerary stop event for this transport route, such as a port call in a vessel schedule."
		},
		"mapBinaryObject": {
			"type": "string",
			"description": "Binary object data that is the map of this transport route."
		},
		"routeType": {
			"type": "string",
			"description": "A type, expressed as text, for this transport route."
		},
		"scheduledPeriod": {
			"$ref": "https://schema.twindev.org/unece/UneceSpecifiedPeriod",
			"description": "The specified period during which this transport route is scheduled."
		},
		"securityLevelCode": {
			"type": "string",
			"description": "A code specifying a security level for this transport route."
		},
		"specifiedTransportMovement": {
			"$ref": "https://schema.twindev.org/unece/UneceTransportMovement",
			"description": "The logistics transport movement specified for this transport route."
		},
		"transportMeans": {
			"type": "string",
			"description": "A means of transport, expressed as text, for this transport route."
		},
		"transportRouteStatusCode": {
			"$ref": "https://schema.twindev.org/unece/UneceStatusCodeList",
			"description": "The code specifying a status for a transport route, such as planned or actual."
		}
	},
	"required": ["type"]
}
