{
	"$schema": "https://json-schema.org/draft/2020-12/schema",
	"$id": "https://schema.twindev.org/w3c-odrl/OdrlSet",
	"title": "OdrlSet",
	"description": "Interface representing an ODRL Set.\nA Set is a basic policy type with no specific party requirements.\nhttps://www.w3.org/TR/odrl-model/#policy-set",
	"type": "object",
	"properties": {
		"@type": {
			"const": "Set",
			"description": "The type must be \"Set\"."
		}
	},
	"required": ["@type"],
	"allOf": [
		{
			"$ref": "https://schema.twindev.org/w3c-odrl/OdrlPolicy"
		}
	]
}
