{
	"$schema": "https://json-schema.org/draft/2020-12/schema",
	"$id": "https://schema.twindev.org/unece/UneceLogisticsLabel",
	"title": "UneceLogisticsLabel",
	"description": "A label used for identifying goods for logistics purposes, such as a barcode, a radio frequency tag or a Vehicle\nIdentification Number (VIN).",
	"type": "object",
	"properties": {
		"@context": {
			"$ref": "https://schema.twindev.org/unece/UneceContextType",
			"description": "JSON-LD Context."
		},
		"type": {
			"const": "LogisticsLabel",
			"description": "JSON-LD Type."
		},
		"identifier": {
			"anyOf": [
				{
					"type": "string"
				},
				{
					"$ref": "https://schema.twindev.org/json-ld/JsonLdValueObject"
				}
			],
			"description": "The unique identifier of this logistics label."
		},
		"includedSection": {
			"type": "array",
			"items": {
				"$ref": "https://schema.twindev.org/unece/UneceSection"
			},
			"description": "A section included in this logistics label."
		},
		"layoutTypeCode": {
			"type": "string",
			"description": "The code specifying the layout type of this logistics label."
		},
		"markingIndicator": {
			"type": "boolean",
			"description": "The indication of whether or not there is a marking on this logistics label."
		},
		"seriesEndId": {
			"anyOf": [
				{
					"type": "string"
				},
				{
					"$ref": "https://schema.twindev.org/json-ld/JsonLdValueObject"
				}
			],
			"description": "The unique identifier of the end of a series of logistics labels."
		},
		"seriesStartId": {
			"anyOf": [
				{
					"type": "string"
				},
				{
					"$ref": "https://schema.twindev.org/json-ld/JsonLdValueObject"
				}
			],
			"description": "The unique identifier of the start of a series of logistics labels."
		},
		"sizeCode": {
			"type": "string",
			"description": "The code specifying the size of this logistics label."
		}
	},
	"required": ["type"]
}
