{
	"$schema": "https://json-schema.org/draft/2020-12/schema",
	"$id": "https://schema.twindev.org/unece/UneceRepresentativePerson",
	"title": "UneceRepresentativePerson",
	"description": "An individual human being acting as a representative.",
	"type": "object",
	"properties": {
		"@context": {
			"$ref": "https://schema.twindev.org/unece/UneceContextType",
			"description": "JSON-LD Context."
		},
		"type": {
			"const": "RepresentativePerson",
			"description": "JSON-LD Type."
		},
		"birthDateTime": {
			"type": "string",
			"description": "The date, time, date time or other date time value which specifies the birth date for this representative person.",
			"format": "date-time"
		},
		"identifier": {
			"anyOf": [
				{
					"type": "string"
				},
				{
					"$ref": "https://schema.twindev.org/json-ld/JsonLdValueObject"
				}
			],
			"description": "The unique identifier for this representative person."
		},
		"nationalityCountry": {
			"type": "array",
			"items": {
				"$ref": "https://schema.twindev.org/unece/UneceCountry"
			},
			"description": "A country that constitutes a nationality by origin, birth, or naturalization for this representative person."
		},
		"representativePersonName": {
			"type": "string",
			"description": "The name or set of names, expressed as text, by which this representative person is known."
		},
		"role": {
			"type": "string",
			"description": "A role, expressed as text, of this representative person."
		}
	},
	"required": ["type"]
}
