From c4a99d20dcbf524f94a018ac712d830e7e655ce2 Mon Sep 17 00:00:00 2001 From: Rasmus Dahlberg Date: Tue, 11 May 2021 11:28:01 +0200 Subject: removed unused schemas --- doc/schema/inclusion_proof.schema.json | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 doc/schema/inclusion_proof.schema.json (limited to 'doc/schema/inclusion_proof.schema.json') diff --git a/doc/schema/inclusion_proof.schema.json b/doc/schema/inclusion_proof.schema.json deleted file mode 100644 index 3309d37..0000000 --- a/doc/schema/inclusion_proof.schema.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "$schema": "https://json-schema.org/draft-07/schema#", - "title": "inclusion_proof", - "description": "JSON-formatted inclusion proof, version 0.", - - "type": "object", - "required": [ "tree_size", "leaf_index", "inclusion_proof" ], - "properties": { - "tree_size": { - "description": "The Merkle tree size that the inclusion proof is based on.", - "type": "integer", - "minimum": 0 - }, - "leaf_index": { - "description": "The zero-based index of the leaf that the inclusion proof is for.", - "type": "integer", - "minimum": 0 - }, - "inclusion_proof": { - "description": "A list of base64-encoded node hashes that proves inclusion", - "type": "array", - "items": { - "description": "A node hash in base64", - "type": "string", - "minLength": 44, - "maxLength": 44 - } - } - } -} -- cgit v1.2.3