aboutsummaryrefslogtreecommitdiffstats
path: root/packages/json-schemas/schemas/ec_signature_schema.json
blob: bc79ca5e967f5c80c2171941b8d4be1d54b130a0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
    "id": "/ECSignature",
    "properties": {
        "v": {
            "type": "number",
            "minimum": 27,
            "maximum": 28
        },
        "r": { "$ref": "/ecSignatureParameterSchema" },
        "s": { "$ref": "/ecSignatureParameterSchema" }
    },
    "required": ["v", "r", "s"],
    "type": "object"
}