{
	"$schema": "https://json-schema.org/draft/2020-12/schema",
	"$id": "https://schema.twindev.org/w3c-odrl/OdrlOffer",
	"title": "OdrlOffer",
	"description": "Interface representing an ODRL Offer.\nAn Offer requires an assigner (the party making the offer).\nhttps://www.w3.org/TR/odrl-model/#policy-offer",
	"type": "object",
	"properties": {
		"@type": {
			"const": "Offer",
			"description": "The type must be \"Offer\"."
		},
		"assigner": {
			"anyOf": [
				{
					"type": "string"
				},
				{
					"$ref": "https://schema.twindev.org/w3c-odrl/OdrlParty"
				}
			],
			"description": "The assigner of the offer.\nRequired for Offer policies."
		}
	},
	"required": ["@type", "assigner"],
	"allOf": [
		{
			"$ref": "https://schema.twindev.org/w3c-odrl/OdrlPolicy"
		}
	]
}
