{
	"$schema": "https://json-schema.org/draft/2020-12/schema",
	"$id": "https://schema.twindev.org/unece/UneceOperationalParameter",
	"title": "UneceOperationalParameter",
	"description": "A set of measurable factors that specifies the conditions within which an entity operates correctly.",
	"type": "object",
	"properties": {
		"@context": {
			"$ref": "https://schema.twindev.org/unece/UneceContextType",
			"description": "JSON-LD Context."
		},
		"type": {
			"const": "OperationalParameter",
			"description": "JSON-LD Type."
		},
		"changeableIndicator": {
			"type": "boolean",
			"description": "The indication whether or not this operational parameter is changeable."
		},
		"definedRange": {
			"type": "array",
			"items": {
				"$ref": "https://schema.twindev.org/unece/UneceRange"
			},
			"description": "A defined range specified for this operational parameter."
		},
		"description": {
			"type": "string",
			"description": "A textual description of this operational parameter."
		},
		"identifier": {
			"anyOf": [
				{
					"type": "string"
				},
				{
					"$ref": "https://schema.twindev.org/json-ld/JsonLdValueObject"
				}
			],
			"description": "The identifier of this operational parameter."
		},
		"name": {
			"type": "string",
			"description": "The name, expressed as text, of this operational parameter."
		},
		"statusCode": {
			"type": "string",
			"description": "The code specifying the status of this operational parameter."
		},
		"typeCode": {
			"anyOf": [
				{
					"$ref": "https://schema.twindev.org/unece/UneceOperationalParameterTypeCodeList"
				},
				{
					"type": "string"
				}
			],
			"description": "The code specifying the type of this operational parameter."
		},
		"value": {
			"type": "string",
			"description": "The value, expressed as text, of this operational parameter."
		},
		"valueAllowedIndicator": {
			"type": "boolean",
			"description": "The indication of whether or not this operational parameter value is allowed."
		},
		"valueMeasure": {
			"$ref": "https://schema.twindev.org/unece/UneceMeasureType",
			"description": "The measure value for this operational parameter."
		}
	},
	"required": ["type"]
}
