{
	"$schema": "https://json-schema.org/draft/2020-12/schema",
	"$id": "https://schema.twindev.org/immutable-proof/ImmutableProofVerification",
	"title": "ImmutableProofVerification",
	"description": "Interface describing an immutable proof verification.",
	"type": "object",
	"properties": {
		"@context": {
			"const": "https://schema.twindev.org/immutable-proof/",
			"description": "JSON-LD Context."
		},
		"type": {
			"const": "ImmutableProofVerification",
			"description": "JSON-LD Type."
		},
		"verified": {
			"type": "boolean",
			"description": "Was the verification successful."
		},
		"failure": {
			"$ref": "https://schema.twindev.org/immutable-proof/ImmutableProofFailure",
			"description": "If the verification was unsuccessful the failure reason."
		}
	},
	"required": ["@context", "type", "verified"]
}
