aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/schemas/signature_data_schema.ts
blob: d208cc438ddd29698c4ae0f055eddaa87e176bfd (plain) (blame)
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',
};