{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "OrderCancelListActivity", "type": "object", "properties": { "@type": { "type": "string", "enum": [ "CANCEL_LIST" ] }, "orderId": { "$ref": "#/components/schemas/OrderId" }, "hash": { "type": "string" }, "maker": { "$ref": "#/components/schemas/UnionAddress" }, "make": { "$ref": "#/components/schemas/AssetType" }, "take": { "$ref": "#/components/schemas/AssetType" }, "source": { "$ref": "#/components/schemas/OrderActivitySource" }, "transactionHash": { "type": "string" }, "blockchainInfo": { "$ref": "#/components/schemas/ActivityBlockchainInfo" } }, "required": [ "@type", "hash", "maker", "make", "take", "transactionHash" ] }