NetworkFrameworkAttributes

Attributes relevant to the 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-network-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-network-framework-attributes-schema.json",
  "title": "NetworkFrameworkAttributes",
  "description": "Attributes relevant to the network for the blockchain framework that the network uses.",
  "type": "object",
  "properties": {
    "Fabric": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NetworkFabricAttributes"
        },
        {
          "description": "Attributes of Hyperledger Fabric for a Managed Blockchain network that uses Hyperledger Fabric."
        }
      ]
    },
    "Ethereum": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NetworkEthereumAttributes"
        },
        {
          "description": "Attributes of an Ethereum network for Managed Blockchain resources participating in an Ethereum network. "
        }
      ]
    }
  }
}