{
	"$schema": "https://json-schema.org/draft/2020-12/schema",
	"$id": "https://schema.twindev.org/unece/UneceRange",
	"title": "UneceRange",
	"description": "A row, line or series, commonly used to express the difference between lowest and highest values.",
	"type": "object",
	"properties": {
		"@context": {
			"$ref": "https://schema.twindev.org/unece/UneceContextType",
			"description": "JSON-LD Context."
		},
		"type": {
			"const": "Range",
			"description": "JSON-LD Type."
		},
		"endId": {
			"anyOf": [
				{
					"type": "string"
				},
				{
					"$ref": "https://schema.twindev.org/json-ld/JsonLdValueObject"
				}
			],
			"description": "The identifier of the end of this specified range."
		},
		"maximumValueMeasure": {
			"$ref": "https://schema.twindev.org/unece/UneceMeasureType",
			"description": "The measure of the maximum value for this specified range."
		},
		"minimumValueMeasure": {
			"$ref": "https://schema.twindev.org/unece/UneceMeasureType",
			"description": "The measure of the minimum value for this specified range."
		},
		"startId": {
			"anyOf": [
				{
					"type": "string"
				},
				{
					"$ref": "https://schema.twindev.org/json-ld/JsonLdValueObject"
				}
			],
			"description": "The identifier of the start of this specified range."
		},
		"totalItemQuantity": {
			"$ref": "https://schema.twindev.org/unece/UneceQuantityType",
			"description": "The total number of items in this specified range."
		},
		"typeCode": {
			"anyOf": [
				{
					"$ref": "https://schema.twindev.org/unece/UneceRangeTypeCodeList"
				},
				{
					"type": "string"
				}
			],
			"description": "The code specifying a type of this specified range."
		},
		"value": {
			"type": "string",
			"description": "A value, expressed as text, for this specified range."
		},
		"valueBaseSystemCode": {
			"type": "string",
			"description": "The code specifying the value base system, such as Arabic numerals, for this specified range."
		},
		"valueCode": {
			"type": "string",
			"description": "A code specifying a value for this specified range."
		}
	},
	"required": ["type"]
}
