diff options
author | Rasmus Dahlberg <rasmus.dahlberg@kau.se> | 2021-05-11 11:28:01 +0200 |
---|---|---|
committer | Rasmus Dahlberg <rasmus.dahlberg@kau.se> | 2021-05-11 11:28:01 +0200 |
commit | c4a99d20dcbf524f94a018ac712d830e7e655ce2 (patch) | |
tree | 8bf1ff4bf00d8c55044307cfa5beaa6f5bb50ac4 /doc/schema/consistency_proof.schema.json | |
parent | cd02e6e2bd7e36d8333824e57913d08a56d8a85b (diff) |
removed unused schemas
Diffstat (limited to 'doc/schema/consistency_proof.schema.json')
-rw-r--r-- | doc/schema/consistency_proof.schema.json | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/doc/schema/consistency_proof.schema.json b/doc/schema/consistency_proof.schema.json deleted file mode 100644 index 003f3c7..0000000 --- a/doc/schema/consistency_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": [ "new_size", "old_size", "consistency_proof" ], - "properties": { - "new_size": { - "description": "The tree size of the newer Merkle tree head.", - "type": "integer", - "minimum": 0 - }, - "old_size": { - "description": "The tree size of the older Merkle tree head.", - "type": "integer", - "minimum": 0 - }, - "consistency_proof": { - "description": "A list of base64-encoded node hashes that proves consistency", - "type": "array", - "items": { - "description": "A node hash in base64", - "type": "string", - "minLength": 44, - "maxLength": 44 - } - } - } -} |