{
	"$schema": "https://json-schema.org/draft/2020-12/schema",
	"$id": "https://schema.twindev.org/unece/UneceClause",
	"title": "UneceClause",
	"description": "A distinct article or provision in a document, which requires compliance.",
	"type": "object",
	"properties": {
		"@context": {
			"$ref": "https://schema.twindev.org/unece/UneceContextType",
			"description": "JSON-LD Context."
		},
		"type": {
			"const": "Clause",
			"description": "JSON-LD Type."
		},
		"associatedMeasurement": {
			"type": "array",
			"items": {
				"$ref": "https://schema.twindev.org/unece/UneceMeasurement"
			},
			"description": "A measurement associated with this document clause."
		},
		"associatedPeriod": {
			"type": "array",
			"items": {
				"$ref": "https://schema.twindev.org/unece/UneceSpecifiedPeriod"
			},
			"description": "A period of time associated with this document clause."
		},
		"content": {
			"type": "string",
			"description": "Content, expressed as text, of this document clause."
		},
		"identifier": {
			"anyOf": [
				{
					"type": "string"
				},
				{
					"$ref": "https://schema.twindev.org/json-ld/JsonLdValueObject"
				}
			],
			"description": "The unique identifier of this document clause."
		},
		"uRLId": {
			"anyOf": [
				{
					"type": "string"
				},
				{
					"$ref": "https://schema.twindev.org/json-ld/JsonLdValueObject"
				}
			],
			"description": "The Uniform Resource Locator (URL) for this document clause."
		}
	},
	"required": ["type"]
}
