Sui · Schema

CommitteeInfo

RPC representation of the [Committee] type.

BlockchainMoveWeb3CryptocurrencySmart Contracts

Properties

Name Type Description
epoch object
validators array
View JSON Schema on GitHub

JSON Schema

CommitteeInfo.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/sui/main/json-schema/CommitteeInfo.json",
  "title": "CommitteeInfo",
  "description": "RPC representation of the [Committee] type.",
  "type": "object",
  "required": [
    "epoch",
    "validators"
  ],
  "properties": {
    "epoch": {
      "$ref": "#/components/schemas/BigInt_for_uint64"
    },
    "validators": {
      "type": "array",
      "items": {
        "type": "array",
        "items": [
          {
            "$ref": "#/components/schemas/AuthorityPublicKeyBytes"
          },
          {
            "$ref": "#/components/schemas/BigInt_for_uint64"
          }
        ],
        "maxItems": 2,
        "minItems": 2
      }
    }
  }
}