VoteOnProposalInput

VoteOnProposalInput schema from Amazon Managed Blockchain API

BlockchainDistributed LedgerHyperledger FabricEthereum

Properties

Name Type Description
VoterMemberId object
Vote object
View JSON Schema on GitHub

JSON Schema

amazon-managed-blockchain-vote-on-proposal-input-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-vote-on-proposal-input-schema.json",
  "title": "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"
  ]
}