{
	"$schema": "https://json-schema.org/draft/2020-12/schema",
	"$id": "https://schema.twindev.org/dataspace-protocol/DataspaceProtocolDistribution",
	"title": "DataspaceProtocolDistribution",
	"description": "Distribution compliant with Eclipse Data Space Protocol, requiring an id and format.",
	"type": "object",
	"properties": {
		"@context": {
			"$ref": "https://schema.twindev.org/dataspace-protocol/DataspaceProtocolContextType",
			"description": "The JSON-LD context."
		},
		"@id": {
			"type": "string",
			"description": "Unique identifier for the distribution; required on standalone distribution objects."
		}
	},
	"required": ["@context", "@id"],
	"allOf": [
		{
			"$ref": "https://schema.twindev.org/dataspace-protocol/DataspaceProtocolDistributionBase"
		}
	]
}
