{
	"$schema": "https://json-schema.org/draft/2020-12/schema",
	"$id": "https://schema.twindev.org/unece/UneceControlSettingParameter",
	"title": "UneceControlSettingParameter",
	"description": "A set of measurable factors that specifies the conditions of its operation within a specific context.",
	"type": "object",
	"properties": {
		"@context": {
			"$ref": "https://schema.twindev.org/unece/UneceContextType",
			"description": "JSON-LD Context."
		},
		"type": {
			"const": "ControlSettingParameter",
			"description": "JSON-LD Type."
		},
		"changeableIndicator": {
			"type": "boolean",
			"description": "The indication whether or not this control setting parameter is changeable."
		},
		"description": {
			"type": "string",
			"description": "A textual description of this control setting parameter."
		},
		"identifier": {
			"anyOf": [
				{
					"type": "string"
				},
				{
					"$ref": "https://schema.twindev.org/json-ld/JsonLdValueObject"
				}
			],
			"description": "The identifier of this control setting parameter."
		},
		"name": {
			"type": "string",
			"description": "The name, expressed as text, of this control setting parameter."
		},
		"requestedRange": {
			"type": "array",
			"items": {
				"$ref": "https://schema.twindev.org/unece/UneceRange"
			},
			"description": "A requested range specified for this control setting parameter."
		},
		"statusCode": {
			"type": "string",
			"description": "The code specifying the status of this control setting parameter."
		},
		"typeCode": {
			"anyOf": [
				{
					"$ref": "https://schema.twindev.org/unece/UneceControlSettingParameterTypeCodeList"
				},
				{
					"type": "string"
				}
			],
			"description": "The code specifying a type of parameter for this control setting parameter."
		},
		"value": {
			"type": "string",
			"description": "The value, expressed as text, of this control setting parameter."
		},
		"valueAllowedIndicator": {
			"type": "boolean",
			"description": "The indication of whether or not this control setting parameter value is allowed."
		},
		"valueMeasure": {
			"$ref": "https://schema.twindev.org/unece/UneceMeasureType",
			"description": "The measure value for this control setting parameter."
		}
	},
	"required": ["type"]
}
