{
	"$schema": "https://json-schema.org/draft/2020-12/schema",
	"$id": "https://schema.twindev.org/gs1-epcis/EpcisPersistentDisposition",
	"title": "EpcisPersistentDisposition",
	"description": "EPCIS 2.0 PersistentDisposition indicating business conditions to set or unset\nindependently of event disposition.",
	"type": "object",
	"properties": {
		"set": {
			"type": "array",
			"items": {
				"anyOf": [
					{
						"$ref": "https://schema.twindev.org/gs1-epcis/EpcisDispositionTypes"
					},
					{
						"type": "string"
					}
				]
			},
			"description": "(Optional) List of persistentDisposition URI values to be set."
		},
		"unset": {
			"type": "array",
			"items": {
				"anyOf": [
					{
						"$ref": "https://schema.twindev.org/gs1-epcis/EpcisDispositionTypes"
					},
					{
						"type": "string"
					}
				]
			},
			"description": "(Optional) List of persistentDisposition URI values to be unset (revoked)."
		}
	}
}
