{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/uniswap/refs/heads/main/json-schema/uniswap-create-swap-response-schema.json", "title": "CreateSwapResponse", "description": "CreateSwapResponse schema from Uniswap Trading API", "type": "object", "properties": { "requestId": { "$ref": "#/components/schemas/RequestId" }, "swap": { "$ref": "#/components/schemas/TransactionRequest" }, "gasFee": { "$ref": "#/components/schemas/gasFee" } }, "required": [ "requestId", "swap" ] }