{
	"$schema": "https://json-schema.org/draft/2020-12/schema",
	"$id": "https://schema.twindev.org/dataspace-protocol/DataspaceProtocolContractNegotiationEventMessage",
	"title": "DataspaceProtocolContractNegotiationEventMessage",
	"description": "Interface for the Dataspace Protocol contract negotiation event message.",
	"type": "object",
	"properties": {
		"@context": {
			"$ref": "https://schema.twindev.org/dataspace-protocol/DataspaceProtocolContextType",
			"description": "The JSON-LD context."
		},
		"@type": {
			"const": "ContractNegotiationEventMessage",
			"description": "The type of the message."
		},
		"providerPid": {
			"type": "string",
			"description": "The provider id for the contract."
		},
		"consumerPid": {
			"type": "string",
			"description": "The consumer id for the contract."
		},
		"event": {
			"$ref": "https://schema.twindev.org/dataspace-protocol/DataspaceProtocolContractNegotiationEventType",
			"description": "The event type."
		}
	},
	"required": ["@context", "@type", "providerPid", "consumerPid", "event"]
}
