NodeFrameworkAttributes

Attributes relevant to a node on a Managed Blockchain network for the blockchain framework that the network uses.

BlockchainDistributed LedgerHyperledger FabricEthereum

Properties

Name Type Description
Fabric object
Ethereum object
View JSON Schema on GitHub

JSON Schema

amazon-managed-blockchain-node-framework-attributes-schema.json Raw ↑
{
  "$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-framework-attributes-schema.json",
  "title": "NodeFrameworkAttributes",
  "description": "Attributes relevant to a node on a Managed Blockchain network for the blockchain framework that the network uses.",
  "type": "object",
  "properties": {
    "Fabric": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NodeFabricAttributes"
        },
        {
          "description": "Attributes of Hyperledger Fabric for a peer node on a Managed Blockchain network that uses Hyperledger Fabric."
        }
      ]
    },
    "Ethereum": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NodeEthereumAttributes"
        },
        {
          "description": "Attributes of Ethereum for a node on a Managed Blockchain network that uses Ethereum. "
        }
      ]
    }
  }
}