{
	"$schema": "https://json-schema.org/draft/2020-12/schema",
	"$id": "https://schema.twindev.org/w3c-odrl/OdrlLogicalConstraintOperand",
	"title": "OdrlLogicalConstraintOperand",
	"description": "Operand list wrapper for logical constraints.\nUses JSON-LD list to preserve order for andSequence.",
	"type": "object",
	"properties": {
		"@list": {
			"type": "array",
			"items": {
				"type": "object",
				"properties": {
					"@id": {
						"type": "string"
					}
				},
				"required": ["@id"]
			},
			"description": "Ordered list of constraint references for logical evaluation."
		}
	},
	"required": ["@list"]
}
