aboutsummaryrefslogtreecommitdiffstats
path: root/src/schemas/basic_type_schemas.ts
blob: c3b81185dbe5ac7b2694e90a41b5e2fcfd724b9b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
export const addressSchema = {
    id: '/addressSchema',
    type: 'string',
    pattern: '^0[xX][0-9A-Fa-f]{40}$',
};

export const numberSchema = {
    id: '/numberSchema',
    type: 'string',
    pattern: '^\\d+(\\.\\d+)?$',
};