aboutsummaryrefslogtreecommitdiffstats
path: root/packages/json-schemas/schemas/order_fill_requests_schema.json
blob: d06fb19a29a208fe93b752dc9055f1e675fda2fe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{
    "id": "/orderFillRequestsSchema",
    "type": "array",
    "items": {
        "properties": {
            "signedOrder": { "$ref": "/signedOrderSchema" },
            "takerTokenFillAmount": { "$ref": "/wholeNumberSchema" }
        },
        "required": ["signedOrder", "takerTokenFillAmount"],
        "type": "object"
    }
}