{
  "getCommitteeSize": {
    "static": false,
    "preRequisites": [],
    "testCases": [
      {
        "id": "CONFORMANCE-RPC-048",
        "description": "get committee size, this should use default blockTag.",
        "input": {},
        "expectedResult": {
          "status": "pass",
          "output": {
            "method": "klay_getCommitteeSize",
            "params": [
              "latest"
            ]
          }
        }
      },
      {
        "id": "CONFORMANCE-RPC-049",
        "description": "get committee size with blockNumber",
        "input": {
          "blockNumber": 990
        },
        "expectedResult": {
          "status": "pass",
          "output": {
            "method": "klay_getCommitteeSize",
            "params": [
              "0x3de"
            ]
          }
        }
      },
      {
        "id": "CONFORMANCE-RPC-050",
        "description": "get committee size with blockTag",
        "input": {
          "blockTag": "latest"
        },
        "expectedResult": {
          "status": "pass",
          "output": {
            "method": "klay_getCommitteeSize",
            "params": [
              "latest"
            ]
          }
        }
      }
    ]
  }
}