aboutsummaryrefslogtreecommitdiffstats
path: root/packages/json-schemas/schemas/signed_order_schema.json
blob: 137ae4a2496b74504dfe7bf0407d9284217187f6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{
    "id": "/signedOrderSchema",
    "allOf": [
        { "$ref": "/orderSchema" },
        {
            "properties": {
                "signature": { "$ref": "/hexSchema" }
            },
            "required": ["signature"]
        }
    ]
}