1{ 2 "$schema": "http://json-schema.org/draft-07/schema#", 3 "type": "object", 4 "additionalProperties": true, 5 "required": [ "shared_secret" ], 6 "properties": { 7 "shared_secret": { 8 "type": "hex", 9 "description": "the SHA-2 of the compressed encoding of the shared secp256k1 point", 10 "maxLength": 64, 11 "minLength": 64 12 } 13 } 14} 15