Amazon Managed Blockchain · JSON Structure

Amazon Managed Blockchain Vote On Proposal Input Structure

VoteOnProposalInput schema from Amazon Managed Blockchain API

Type: object Properties: 2 Required: 2
BlockchainDistributed LedgerHyperledger FabricEthereum

VoteOnProposalInput is a JSON Structure definition published by Amazon Managed Blockchain, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

VoterMemberId Vote

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-managed-blockchain/refs/heads/main/json-structure/amazon-managed-blockchain-vote-on-proposal-input-structure.json",
  "name": "VoteOnProposalInput",
  "description": "VoteOnProposalInput schema from Amazon Managed Blockchain API",
  "type": "object",
  "properties": {
    "VoterMemberId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ResourceIdString"
        },
        {
          "description": "The unique identifier of the member casting the vote. "
        }
      ]
    },
    "Vote": {
      "allOf": [
        {
          "$ref": "#/components/schemas/VoteValue"
        },
        {
          "description": " The value of the vote. "
        }
      ]
    }
  },
  "required": [
    "VoterMemberId",
    "Vote"
  ]
}