aboutsummaryrefslogtreecommitdiffstats
path: root/packages/json-schemas/schemas/order_cancel_schema.json
blob: 09d4068c632cb01a366726cf775d4447d3a6f15a (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": "/numberSchema" }
        },
        "required": ["order", "takerTokenCancelAmount"],
        "type": "object"
    }
}