{
    "description": "CancelOrder object. When this object is sent to matcher, order with 'orderId' will be canceled",
    "type": "object",
    "properties": {
        "sender": {
            "type": "string"
        },
        "orderId": {
            "type": "string"
        },
        "signature": {
            "type": "string"
        },
        "hash": {
            "type": "string"
        }
    },
    "required": [
        "hash",
        "orderId",
        "sender",
        "signature"
    ],
    "$schema": "http://json-schema.org/draft-07/schema#",
    "$id": "https://raw.githubusercontent.com/acrylplatform/acryl-transactions/master/src/schemas/ICancelOrder.json",
    "definitions": {
        "LONG": {
            "type": [
                "number"
            ]
        }
    }
}
