{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://api-evangelist.github.io/deribit/json-schema/transfer_item.json", "title": "Transfer Item", "properties": { "id": { "$ref": "#/components/schemas/transfer_id" }, "created_timestamp": { "$ref": "#/components/schemas/timestamp" }, "type": { "$ref": "#/components/schemas/transfer_type" }, "currency": { "$ref": "#/components/schemas/currency" }, "amount": { "$ref": "#/components/schemas/currency_amount" }, "other_side": { "$ref": "#/components/schemas/transfer_other_side" }, "state": { "$ref": "#/components/schemas/transfer_state" }, "direction": { "$ref": "#/components/schemas/transfer_direction" }, "updated_timestamp": { "$ref": "#/components/schemas/timestamp" }, "nonce": { "type": "string", "description": "Optional idempotency nonce if provided in the request" } }, "required": [ "currency", "id", "type", "amount", "state", "other_side", "updated_timestamp", "created_timestamp" ], "type": "object" }