{
	"$schema": "https://json-schema.org/draft/2020-12/schema",
	"$id": "https://schema.twindev.org/dataspace-protocol/DataspaceProtocolEndpointProperty",
	"title": "DataspaceProtocolEndpointProperty",
	"description": "Interface for a Dataspace Protocol endpoint property key-value pair.",
	"type": "object",
	"properties": {
		"@type": {
			"const": "EndpointProperty",
			"description": "The JSON-LD type."
		},
		"name": {
			"type": "string",
			"description": "The property name."
		},
		"value": {
			"type": "string",
			"description": "The property value."
		}
	},
	"required": ["@type", "name", "value"]
}
