{
	"$schema": "https://json-schema.org/draft/2020-12/schema",
	"$id": "https://schema.twindev.org/w3c-odrl/OdrlAsset",
	"title": "OdrlAsset",
	"description": "Interface for ODRL Assets.\nhttps://www.w3.org/TR/odrl-model/#asset",
	"type": "object",
	"properties": {
		"uid": {
			"type": "string",
			"description": "The unique identifier for the asset.\nShould be an IRI."
		},
		"@type": {
			"type": "string",
			"description": "The type of the asset.\nCan be used to specify additional type information."
		},
		"partOf": {
			"anyOf": [
				{
					"type": "string"
				},
				{
					"$ref": "https://schema.twindev.org/w3c-odrl/OdrlAssetCollection"
				},
				{
					"type": "array",
					"items": {
						"anyOf": [
							{
								"type": "string"
							},
							{
								"$ref": "https://schema.twindev.org/w3c-odrl/OdrlAssetCollection"
							}
						]
					}
				}
			],
			"description": "Reference to the asset collection this asset is part of.\nUsed to identify an AssetCollection that this Asset is a member of."
		},
		"hasPolicy": {
			"anyOf": [
				{
					"type": "string"
				},
				{
					"type": "array",
					"items": {
						"type": "string"
					}
				}
			],
			"description": "Reference to the policy that governs this asset.\nUsed to identify the Policy that governs this Asset."
		}
	}
}
