{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "SendToChainActivity", "type": "object", "properties": { "@type": { "type": "string", "enum": [ "SEND_TO_CHAIN" ] }, "owner": { "$ref": "#/components/schemas/UnionAddress" }, "to": { "type": "string" }, "chainId": { "$ref": "#/components/schemas/BigInteger" }, "contract": { "$ref": "#/components/schemas/ContractAddress" }, "collection": { "$ref": "#/components/schemas/CollectionId" }, "itemId": { "$ref": "#/components/schemas/ItemId" }, "value": { "$ref": "#/components/schemas/BigInteger" }, "transactionHash": { "type": "string" }, "blockchainInfo": { "$ref": "#/components/schemas/ActivityBlockchainInfo" } }, "required": [ "@type", "to", "itemId", "owner", "value", "transactionHash", "chainId" ] }