ListProposalsOutput

ListProposalsOutput schema from Amazon Managed Blockchain API

BlockchainDistributed LedgerHyperledger FabricEthereum

Properties

Name Type Description
Proposals object
NextToken object
View JSON Schema on GitHub

JSON Schema

amazon-managed-blockchain-list-proposals-output-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-list-proposals-output-schema.json",
  "title": "ListProposalsOutput",
  "description": "ListProposalsOutput schema from Amazon Managed Blockchain API",
  "type": "object",
  "properties": {
    "Proposals": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ProposalSummaryList"
        },
        {
          "description": "The summary of each proposal made on the network."
        }
      ]
    },
    "NextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PaginationToken"
        },
        {
          "description": "The pagination token that indicates the next set of results to retrieve."
        }
      ]
    }
  }
}