aboutsummaryrefslogtreecommitdiffstats
path: root/packages/json-schemas/schemas/order_cancel_schema.json
blob: 8d0999941a4cfaa2e440f76720735ef861012e65 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{
    "id": "/orderCancellationRequestsSchema",
    "type": "array",
    "items": {
        "properties": {
            "order": { "$ref": "/orderSchema" },
            "takerTokenCancelAmount": { "$ref": "/wholeNumberSchema" }
        },
        "required": ["order", "takerTokenCancelAmount"],
        "type": "object"
    }
}