{
	"$schema": "https://json-schema.org/draft/2020-12/schema",
	"$id": "https://schema.twindev.org/unece/UneceIndividualTTAnimal",
	"title": "UneceIndividualTTAnimal",
	"description": "A Track and Trace (TT) animal, such as one kept or raised on a farm, ranch.",
	"type": "object",
	"properties": {
		"@context": {
			"$ref": "https://schema.twindev.org/unece/UneceContextType",
			"description": "JSON-LD Context."
		},
		"type": {
			"const": "IndividualTTAnimal",
			"description": "JSON-LD Type."
		},
		"birthDateTime": {
			"type": "string",
			"description": "The birth date for this individual TT animal.",
			"format": "date-time"
		},
		"deathDateTime": {
			"type": "string",
			"description": "The death date for this individual TT animal.",
			"format": "date-time"
		},
		"identifier": {
			"anyOf": [
				{
					"type": "string"
				},
				{
					"$ref": "https://schema.twindev.org/json-ld/JsonLdValueObject"
				}
			],
			"description": "The identifier for this TT animal, such as the number appearing on an animal ear tag."
		},
		"specifiedDelimitedPeriod": {
			"$ref": "https://schema.twindev.org/unece/UneceDelimitedPeriod",
			"description": "The delimited period specified for this individual TT animal."
		},
		"specifiedPeriod": {
			"$ref": "https://schema.twindev.org/unece/UneceDelimitedPeriod",
			"description": "The delimited period specified for this individual TT animal."
		}
	},
	"required": ["type", "birthDateTime", "deathDateTime", "identifier"]
}
