1 2 3 4 5 6 7 8 9 10 11
export const signatureDataSchema = { id: '/SignatureData', properties: { hash: { type: 'string' }, r: { type: 'string' }, s: { type: 'string' }, v: { type: 'number' }, }, required: ['hash', 'r', 's', 'v'], type: 'object', };