{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-managed-blockchain/refs/heads/main/json-schema/amazon-managed-blockchain-node-ethereum-attributes-schema.json", "title": "NodeEthereumAttributes", "description": "Attributes of an Ethereum node.", "type": "object", "properties": { "HttpEndpoint": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "The endpoint on which the Ethereum node listens to run Ethereum API methods over HTTP connections from a client. Use this endpoint in client code for smart contracts when using an HTTP connection. Connections to this endpoint are authenticated using Signature Version 4." } ] }, "WebSocketEndpoint": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "The endpoint on which the Ethereum node listens to run Ethereum JSON-RPC methods over WebSocket connections from a client. Use this endpoint in client code for smart contracts when using a WebSocket connection. Connections to this endpoint are authenticated using Signature Version 4." } ] } } }